aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-04-30 10:34:49 -0600
committerEric Blake <eblake@redhat.com>2011-05-05 13:47:40 -0600
commit68ea80cfdd41bc3adbe70ac5d0a9c396c81690a3 (patch)
treeee1b6b553cc2a70a92d378607747b1ac24474f1e /docs/hacking.html.in
parentdocs: <filesystem> attr is 'accessmode', not 'mode' (diff)
downloadlibvirt-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.in2
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(&amp;buf, "&lt;domain&gt;\n");
- virBufferVSprintf(&amp;buf, " &lt;memory&gt;%d&lt;/memory&gt;\n", memory);
+ virBufferAsprintf(&amp;buf, " &lt;memory&gt;%d&lt;/memory&gt;\n", memory);
...
virBufferAddLit(&amp;buf, "&lt;/domain&gt;\n");