1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

maint: formatting cleanups in buf.c

* src/util/buf.c: Use consistent formatting.
This commit is contained in:
Eric Blake 2012-12-19 15:00:13 -07:00
parent 622ceb34ff
commit 258208e1da

View File

@ -106,8 +106,8 @@ virBufferGetIndent(const virBufferPtr buf, bool dynamic)
/** /**
* virBufferGrow: * virBufferGrow:
* @buf: the buffer * @buf: the buffer
* @len: the minimum free size to allocate on top of existing used space * @len: the minimum free size to allocate on top of existing used space
* *
* Grow the available space of a buffer to at least @len bytes. * Grow the available space of a buffer to at least @len bytes.
* *
@ -282,8 +282,8 @@ virBufferUse(const virBufferPtr buf)
/** /**
* virBufferAsprintf: * virBufferAsprintf:
* @buf: the buffer to append to * @buf: the buffer to append to
* @format: the format * @format: the format
* @...: the variable list of arguments * @...: the variable list of arguments
* *
* Do a formatted print to an XML buffer. Auto indentation may be applied. * Do a formatted print to an XML buffer. Auto indentation may be applied.
*/ */
@ -299,8 +299,8 @@ virBufferAsprintf(virBufferPtr buf, const char *format, ...)
/** /**
* virBufferVasprintf: * virBufferVasprintf:
* @buf: the buffer to append to * @buf: the buffer to append to
* @format: the format * @format: the format
* @argptr: the variable list of arguments * @argptr: the variable list of arguments
* *
* Do a formatted print to an XML buffer. Auto indentation may be applied. * Do a formatted print to an XML buffer. Auto indentation may be applied.
*/ */
@ -458,7 +458,7 @@ virBufferEscapeSexpr(virBufferPtr buf,
virBufferEscape(buf, '\\', "\\'", format, str); virBufferEscape(buf, '\\', "\\'", format, str);
} }
/* Work around spurious strchr() diagnostics given by -Wlogical-op * /* Work around spurious strchr() diagnostics given by -Wlogical-op
* for gcc < 4.6. Doing it via a local pragma keeps the damage * for gcc < 4.6. Doing it via a local pragma keeps the damage
* smaller than disabling it on the package level. Unfortunately, the * smaller than disabling it on the package level. Unfortunately, the
* affected GCCs don't allow diagnostic push/pop which would have * affected GCCs don't allow diagnostic push/pop which would have
@ -522,7 +522,7 @@ virBufferEscape(virBufferPtr buf, char escape, const char *toescape,
/** /**
* virBufferURIEncodeString: * virBufferURIEncodeString:
* @buf: the buffer to append to * @buf: the buffer to append to
* @str: the string argument which will be URI-encoded * @str: the string argument which will be URI-encoded
* *
* Append the string to the buffer. The string will be URI-encoded * Append the string to the buffer. The string will be URI-encoded
* during the append (ie any non alpha-numeric characters are replaced * during the append (ie any non alpha-numeric characters are replaced
@ -630,7 +630,7 @@ virBufferEscapeShell(virBufferPtr buf, const char *str)
/** /**
* virBufferStrcat: * virBufferStrcat:
* @buf: the buffer to append to * @buf: the buffer to append to
* @...: the variable list of strings, the last argument must be NULL * @...: the variable list of strings, the last argument must be NULL
* *
* Concatenate strings to an XML buffer. Auto indentation may be applied * Concatenate strings to an XML buffer. Auto indentation may be applied
* after each string argument. * after each string argument.