From: Martin Peschke Date: Mon, 12 Feb 2007 08:51:56 +0000 (-0800) Subject: [PATCH] scnprintf(): fix a comment X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ea6f3281a145d16ed53e88b0627f78d5cde6068f;p=linux-beck.git [PATCH] scnprintf(): fix a comment The return value of scnprintf() never exceeds @size. Signed-off-by: Martin Peschke Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 44f0e339a947..b025864d2e43 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -554,8 +554,7 @@ EXPORT_SYMBOL(snprintf); * @...: Arguments for the format string * * 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 - * greater than or equal to @size, the resulting string is truncated. + * the trailing '\0'. If @size is <= 0 the function returns 0. */ int scnprintf(char * buf, size_t size, const char *fmt, ...)