Whitespace change.
authorBruno Haible <bruno@clisp.org>
Thu, 8 Mar 2007 03:24:38 +0000 (03:24 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 8 Mar 2007 03:24:38 +0000 (03:24 +0000)
lib/snprintf.c
lib/sprintf.c
lib/vsnprintf.c
lib/vsprintf.c

index dbae815..7314c83 100644 (file)
@@ -38,7 +38,7 @@
    additional length SIZE limit how much is written into STR.  Returns
    string length of formatted string (which may be larger than SIZE).
    STR may be NULL, in which case nothing will be written.  On error,
-   return a negative value. */
+   return a negative value.  */
 int
 snprintf (char *str, size_t size, const char *format, ...)
 {
index 7d58daf..ee71689 100644 (file)
@@ -40,7 +40,7 @@
 
 /* Print formatted output to string STR.
    Return string length of formatted string.  On error, return a negative
-   value. */
+   value.  */
 int
 sprintf (char *str, const char *format, ...)
 {
index d84e4de..4f841fc 100644 (file)
@@ -40,7 +40,7 @@
    additional length SIZE limit how much is written into STR.  Returns
    string length of formatted string (which may be larger than SIZE).
    STR may be NULL, in which case nothing will be written.  On error,
-   return a negative value. */
+   return a negative value.  */
 int
 vsnprintf (char *str, size_t size, const char *format, va_list args)
 {
index f75f510..d25c4a6 100644 (file)
@@ -40,7 +40,7 @@
 
 /* Print formatted output to string STR.
    Return string length of formatted string.  On error, return a negative
-   value. */
+   value.  */
 int
 vsprintf (char *str, const char *format, va_list args)
 {