diff options
author | Eric Blake <eblake@redhat.com> | 2011-04-30 10:34:49 -0600 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2011-05-05 13:47:40 -0600 |
commit | 68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3 (patch) | |
tree | ee1b6b553cc2a70a92d378607747b1ac24474f1e /docs/hacking.html.in | |
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 'docs/hacking.html.in')
-rw-r--r-- | docs/hacking.html.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hacking.html.in b/docs/hacking.html.in index dd8eeb8fc..68886878e 100644 --- a/docs/hacking.html.in +++ b/docs/hacking.html.in @@ -654,7 +654,7 @@ ... virBufferAddLit(&buf, "<domain>\n"); - virBufferVSprintf(&buf, " <memory>%d</memory>\n", memory); + virBufferAsprintf(&buf, " <memory>%d</memory>\n", memory); ... virBufferAddLit(&buf, "</domain>\n"); |