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 dbae815a5507eae43f88ced743cb4fc2a44cabc8..7314c83a3e11e81a35881cca16e224fc3c4719fe 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 7d58daf89e99d99dab5c6bc95b55934ca2fa8d37..ee716895d3b45a22db1fb613eed0399e658e5e0f 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 d84e4dedd73caddd9a1671b485f9fa10611e4a53..4f841fc4777e8d6aeb31d9cef566a0fe7c63c1f3 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 f75f510bc568ebf41c606fe76bb185b37424ff16..d25c4a65f9d160acbdf6ce76d464a601d3768eb3 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)
 {