float.c: clear off uninitialized warning

Remove uninitialized warning (harmless, but annoying.)
This commit is contained in:
H. Peter Anvin 2007-09-24 20:53:48 -07:00
parent 10ba8490ce
commit 82f9f63378

View file

@ -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);