summaryrefslogtreecommitdiff
path: root/float.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-24 20:53:48 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-24 20:53:48 -0700
commit82f9f63378c29e59e85b7cad1382748021c6574d (patch)
treed68967eb1388e27a3cf636a883ee881dd37204b2 /float.c
parent10ba8490ce2ea05b4ccf5d8f69ac703e1e3b437f (diff)
downloadnasm-82f9f63378c29e59e85b7cad1382748021c6574d.tar.gz
float.c: clear off uninitialized warning
Remove uninitialized warning (harmless, but annoying.)
Diffstat (limited to 'float.c')
-rw-r--r--float.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/float.c b/float.c
index d22aa19c..357bcb74 100644
--- a/float.c
+++ b/float.c
@@ -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);