diff options
author | 2011-04-30 10:34:49 -0600 | |
---|---|---|
committer | 2011-05-05 13:47:40 -0600 | |
commit | 68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3 (patch) | |
tree | ee1b6b553cc2a70a92d378607747b1ac24474f1e /HACKING | |
parent | docs: <filesystem> attr is 'accessmode', not 'mode' (diff) | |
download | libvirt-68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3.tar.gz libvirt-68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3.tar.bz2 libvirt-68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3.zip |
maint: rename virBufferVSprintf to virBufferAsprintf
We already have virAsprintf, so picking a similar name helps for
seeing a similar purpose. Furthermore, the prefix V before printf
generally implies 'va_list', even though this variant was '...', and
the old name got in the way of adding a new va_list version.
global rename performed with:
$ git grep -l virBufferVSprintf \
| xargs -L1 sed -i 's/virBufferVSprintf/virBufferAsprintf/g'
then revert the changes in ChangeLog-old.
Diffstat (limited to 'HACKING')
-rw-r--r-- | HACKING | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -545,7 +545,7 @@ Typical usage is as follows: ... virBufferAddLit(&buf, "<domain>\n"); - virBufferVSprintf(&buf, " <memory>%d</memory>\n", memory); + virBufferAsprintf(&buf, " <memory>%d</memory>\n", memory); ... virBufferAddLit(&buf, "</domain>\n"); |