Update fix for #469051

svn path=/trunk/; revision=5717
This commit is contained in:
Cody Russell 2007-08-22 19:31:27 +00:00
parent ae70a4e5af
commit 2ffcf767a2
2 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
2007-08-22 Cody Russell <bratsche@gnome.org> 2007-08-22 Cody Russell <bratsche@gnome.org>
* glib/gprintf.c: Document g_snprintf to return "bytes" rather * glib/gprintf.c: Document g_snprintf to return "bytes" rather
than "characters". than "characters". (#469051)
2007-08-20 Behdad Esfahbod <behdad@gnome.org> 2007-08-20 Behdad Esfahbod <behdad@gnome.org>

View File

@ -40,7 +40,7 @@
* An implementation of the standard printf() function which supports * An implementation of the standard printf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -68,7 +68,7 @@ g_printf (gchar const *format,
* An implementation of the standard fprintf() function which supports * An implementation of the standard fprintf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -99,7 +99,7 @@ g_fprintf (FILE *file,
* An implementation of the standard sprintf() function which supports * An implementation of the standard sprintf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -121,7 +121,7 @@ g_sprintf (gchar *string,
/** /**
* g_snprintf: * g_snprintf:
* @string: the buffer to hold the output. * @string: the buffer to hold the output.
* @n: the maximum number of characters to produce (including the * @n: the maximum number of bytes to produce (including the
* terminating nul character). * terminating nul character).
* @format: a standard printf() format string, but notice * @format: a standard printf() format string, but notice
* <link linkend="string-precision">string precision pitfalls</link>. * <link linkend="string-precision">string precision pitfalls</link>.
@ -173,7 +173,7 @@ g_snprintf (gchar *string,
* An implementation of the standard vprintf() function which supports * An implementation of the standard vprintf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -196,7 +196,7 @@ g_vprintf (gchar const *format,
* An implementation of the standard fprintf() function which supports * An implementation of the standard fprintf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -220,7 +220,7 @@ g_vfprintf (FILE *file,
* An implementation of the standard vsprintf() function which supports * An implementation of the standard vsprintf() function which supports
* positional parameters, as specified in the Single Unix Specification. * positional parameters, as specified in the Single Unix Specification.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.2 * Since: 2.2
**/ **/
@ -238,7 +238,7 @@ g_vsprintf (gchar *string,
/** /**
* g_vsnprintf: * g_vsnprintf:
* @string: the buffer to hold the output. * @string: the buffer to hold the output.
* @n: the maximum number of characters to produce (including the * @n: the maximum number of bytes to produce (including the
* terminating nul character). * terminating nul character).
* @format: a standard printf() format string, but notice * @format: a standard printf() format string, but notice
* <link linkend="string-precision">string precision pitfalls</link>. * <link linkend="string-precision">string precision pitfalls</link>.
@ -262,7 +262,7 @@ g_vsprintf (gchar *string,
* The format string may contain positional parameters, as specified in * The format string may contain positional parameters, as specified in
* the Single Unix Specification. * the Single Unix Specification.
* *
* Returns: the number of characters which would be produced if the buffer * Returns: the number of bytes which would be produced if the buffer
* was large enough. * was large enough.
*/ */
gint gint
@ -290,7 +290,7 @@ g_vsnprintf (gchar *string,
* string to hold the output, instead of putting the output in a buffer * string to hold the output, instead of putting the output in a buffer
* you allocate in advance. * you allocate in advance.
* *
* Returns: the number of characters printed. * Returns: the number of bytes printed.
* *
* Since: 2.4 * Since: 2.4
**/ **/