diff options
author | 2006-05-19 14:15:27 +0000 | |
---|---|---|
committer | 2006-05-19 14:15:27 +0000 | |
commit | d4ef0ac6d1e1b9c5be61a4f65a7ae0643dca96da (patch) | |
tree | 731fcbf7244bbf5189a80aaaf6d5e554d839e3a2 /lib/libc/stdlib/strtod.c | |
parent | - merge BOOTP and DHCP sections (diff) | |
download | wireguard-openbsd-d4ef0ac6d1e1b9c5be61a4f65a7ae0643dca96da.tar.xz wireguard-openbsd-d4ef0ac6d1e1b9c5be61a4f65a7ae0643dca96da.zip |
fix a !foo & bar.
ok miod@, tedu@, pedro@
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 2f0de36d90a..d01158e10c1 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtod.c,v 1.21 2005/08/08 08:05:37 espie Exp $ */ +/* $OpenBSD: strtod.c,v 1.22 2006/05/19 14:15:27 thib Exp $ */ /**************************************************************** * * The author of this software is David M. Gay. @@ -532,7 +532,7 @@ lo0bits(ULong *y) if (!(x & 1)) { k++; x >>= 1; - if (!x & 1) + if (!(x & 1)) return 32; } *y = x; |