Commit ea6f3281 authored by Martin Peschke's avatar Martin Peschke Committed by Linus Torvalds

[PATCH] scnprintf(): fix a comment

The return value of scnprintf() never exceeds @size.
Signed-off-by: default avatarMartin Peschke <mp3@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 91dd26ad
...@@ -554,8 +554,7 @@ EXPORT_SYMBOL(snprintf); ...@@ -554,8 +554,7 @@ EXPORT_SYMBOL(snprintf);
* @...: Arguments for the format string * @...: Arguments for the format string
* *
* The return value is the number of characters written into @buf not including * The return value is the number of characters written into @buf not including
* the trailing '\0'. If @size is <= 0 the function returns 0. If the return is * the trailing '\0'. If @size is <= 0 the function returns 0.
* greater than or equal to @size, the resulting string is truncated.
*/ */
int scnprintf(char * buf, size_t size, const char *fmt, ...) int scnprintf(char * buf, size_t size, const char *fmt, ...)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment