diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 20:53:48 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 20:53:48 -0700 |
commit | 82f9f63378c29e59e85b7cad1382748021c6574d (patch) | |
tree | d68967eb1388e27a3cf636a883ee881dd37204b2 /float.c | |
parent | 10ba8490ce2ea05b4ccf5d8f69ac703e1e3b437f (diff) | |
download | nasm-82f9f63378c29e59e85b7cad1382748021c6574d.tar.gz nasm-82f9f63378c29e59e85b7cad1382748021c6574d.tar.bz2 nasm-82f9f63378c29e59e85b7cad1382748021c6574d.zip |
float.c: clear off uninitialized warning
Remove uninitialized warning (harmless, but annoying.)
Diffstat (limited to 'float.c')
-rw-r--r-- | float.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -80,6 +80,8 @@ static void ieee_flconvert_hex(char *string, uint16_t *mant, twopwr = 0; seendot = seendigit = 0; + ms = 0; + mp = NULL; memset(mult, 0, sizeof mult); |