X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fvsprintf.h;h=490c96ca6d1fcb32c4a0c0b3c0f53ba1f65f15c3;hb=0d7f1ae0fe6c0d9af2c0208aab4843ec3fdfaf52;hp=e38076d22d4ff7d4aa2415430ee0328942041ab4;hpb=7fd117389ec7bbd0ce2fbb98ce47c20f5b8a0cfb;p=u-boot diff --git a/include/vsprintf.h b/include/vsprintf.h index e38076d22d..490c96ca6d 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(). *