diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-03 21:52:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-03 21:52:46 +0100 |
commit | 2d3253d1f93fbffb62c7521d41eed0102747d949 (patch) | |
tree | c8e967cd6363d6f57bd21d11b44ff65d0ace2e9b /networking/ntpd.c | |
parent | d498ff0ac474c00dd4e08939d2b3cc3da6f2cb78 (diff) | |
download | busybox-w32-2d3253d1f93fbffb62c7521d41eed0102747d949.tar.gz busybox-w32-2d3253d1f93fbffb62c7521d41eed0102747d949.tar.bz2 busybox-w32-2d3253d1f93fbffb62c7521d41eed0102747d949.zip |
ntpd: fix comment, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ntpd.c')
-rw-r--r-- | networking/ntpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index f147d8c6a..771a75a69 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -335,7 +335,7 @@ static ALWAYS_INLINE double SQRT(double X) | |||
335 | if (sizeof(float) != 4) | 335 | if (sizeof(float) != 4) |
336 | return sqrt(X); | 336 | return sqrt(X); |
337 | 337 | ||
338 | /* This avoids needing libm, saves about 1.2k on x86-32 */ | 338 | /* This avoids needing libm, saves about 0.5k on x86-32 */ |
339 | return my_SQRT(X); | 339 | return my_SQRT(X); |
340 | } | 340 | } |
341 | 341 | ||