Fix conversion of uint to zero, even though it's never used
diff --git a/src/ieee754.c b/src/ieee754.c
index b8cd449..40421ad 100644
--- a/src/ieee754.c
+++ b/src/ieee754.c
@@ -868,9 +868,9 @@
int nPrecisionBits;
if(uInt == 0) {
- uDoubleSignificand = 0; // TODO: test this
- nDoubleUnbiasedExponent = 0;
-
+ uDoubleSignificand = 0;
+ nDoubleUnbiasedExponent = DOUBLE_EXPONENT_ZERO;
+
} else {
/* Figure out the exponent and normalize the significand. This is
* done by shifting out all leading zero bits and counting them. If