formatfloat.c: Typo fix in comment.

This commit is contained in:
Paul Sokolovsky 2014-07-17 17:48:35 +03:00
parent a4022c92f0
commit e3737b858a
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ int format_float(float f, char *buf, size_t buf_size, char fmt, int prec, char s
if (buf_size < 7) {
// Smallest exp notion is -9e+99 which is 6 chars plus terminating
// nulll.
// null.
if (buf_size >= 2) {
*s++ = '?';