projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d498ff0
)
ntpd: fix comment, no code changes
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 3 Jan 2010 20:52:46 +0000
(21:52 +0100)
committer
Denys 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
patch
|
blob
|
history
diff --git
a/networking/ntpd.c
b/networking/ntpd.c
index f147d8c6a7b367595cda88a4c3f448c44b47d2ba..771a75a69962a9640f20b026f6a51e3d1533b26e 100644
(file)
--- a/
networking/ntpd.c
+++ b/
networking/ntpd.c
@@
-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.2
k on x86-32 */
+ /* This avoids needing libm, saves about
0.5
k on x86-32 */
return my_SQRT(X);
}