mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 07:01:23 +00:00
[PATCH] scnprintf(): fix a comment
The return value of scnprintf() never exceeds @size. Signed-off-by: Martin Peschke <mp3@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
91dd26ad2c
commit
ea6f3281a1
1 changed files with 1 additions and 2 deletions
|
@ -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, ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue