ntpd: fix comment, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 3 Jan 2010 20:52:46 +0000 (21:52 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 3 Jan 2010 20:52:46 +0000 (21:52 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/ntpd.c

index f147d8c6a7b367595cda88a4c3f448c44b47d2ba..771a75a69962a9640f20b026f6a51e3d1533b26e 100644 (file)
@@ -335,7 +335,7 @@ static ALWAYS_INLINE double SQRT(double X)
        if (sizeof(float) != 4)
                return sqrt(X);
 
-       /* This avoids needing libm, saves about 1.2k on x86-32 */
+       /* This avoids needing libm, saves about 0.5k on x86-32 */
        return my_SQRT(X);
 }