Fix logic bug introduced on 2007-05-06.
[gnulib.git] / lib / ldexpl.c
index bb16be6..5eb9ff3 100644 (file)
@@ -52,7 +52,7 @@ ldexpl(long double x, int exp)
        for (bit = 1;;)
          {
            /* Invariant: Here bit = 2^i, factor = 2^-2^i or = 2^2^i,
-              and bit <= exp.  */ 
+              and bit <= exp.  */
            if (exp & bit)
              x *= factor;
            bit <<= 1;