diff options
author | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
---|---|---|
committer | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
commit | 0f4ee2e44a1e47258a8b07fb25e28286d131390c (patch) | |
tree | 7bfb507183544d14236c0be8a232a92f4113abb1 /py/formatfloat.c | |
parent | 0429d35f37532d2a981e704f014a248da9b157d8 (diff) | |
parent | 5467186b0eaa6e856b00f60f807bb988ae2ef8c5 (diff) | |
download | micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.tar.gz micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.zip |
Merge https://github.com/micropython/micropython
Diffstat (limited to 'py/formatfloat.c')
-rw-r--r-- | py/formatfloat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/formatfloat.c b/py/formatfloat.c index caecb0f29b..d1b12cdd5b 100644 --- a/py/formatfloat.c +++ b/py/formatfloat.c @@ -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++ = '?'; |