diff options
Diffstat (limited to 'include/vsprintf.h')
-rw-r--r-- | include/vsprintf.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h index e38076d22d4..490c96ca6d1 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h @@ -112,12 +112,10 @@ int sprintf(char *buf, const char *fmt, ...) * Format a string and place it in a buffer (va_list version) * * @param buf The buffer to place the result into - * @param size The size of the buffer, including the trailing null space * @param fmt The format string to use * @param args Arguments for the format string * @return the number of characters which have been written into - * the @buf not including the trailing '\0'. If @size is == 0 the function - * returns 0. + * the @buf not including the trailing '\0'. * * If you're not already dealing with a va_list consider using scnprintf(). * |