Clarify the documentation + regarding overflows (wording by Jan Schmidt)
authorBenjamin Otte <otte@src.gnome.org>
Wed, 24 Jan 2007 16:23:23 +0000 (16:23 +0000)
committerBenjamin Otte <otte@src.gnome.org>
Wed, 24 Jan 2007 16:23:23 +0000 (16:23 +0000)
* glib/gprintf.c (g_sprintf): Clarify the documentation
+       regarding overflows (wording by Jan Schmidt)

svn path=/trunk/; revision=5315

ChangeLog
glib/gprintf.c

index 1e0d451..87b0b1a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-24  Benjamin Otte <otte@gnome.org>
+
+       * glib/gprintf.c (g_sprintf): Clarify the documentation
+       regarding overflows (wording by Jan Schmidt)
+
 2007-01-23  Roozbeh Pournader  <roozbeh@farsiweb.info>
 
        * README: Remove mention of no-longer-existing PATCH
index e62e34c..7de0953 100644 (file)
@@ -89,7 +89,9 @@ g_fprintf (FILE        *file,
 
 /**
  * g_sprintf:
- * @string: the buffer to hold the output.
+ * @string: A pointer to a memory buffer to contain the resulting string. It 
+ *          is up to the caller to ensure that the allocated buffer is large 
+ *          enough to hold the formatted result
  * @format: a standard printf() format string, but notice 
  *          <link linkend="string-precision">string precision pitfalls</link>.
  * @Varargs: the arguments to insert in the output.