diff options
author | thib <> | 2006-05-19 14:15:27 +0000 |
---|---|---|
committer | thib <> | 2006-05-19 14:15:27 +0000 |
commit | 97354c58d33c6c705b3780bdd53cc36bbf301839 (patch) | |
tree | 1b5a16a602bdeba04a5a58734508ec0cb42953a9 /src/lib/libc | |
parent | 36da2fd8b0a926ce11e60b1acb1f85d938807251 (diff) | |
download | openbsd-97354c58d33c6c705b3780bdd53cc36bbf301839.tar.gz openbsd-97354c58d33c6c705b3780bdd53cc36bbf301839.tar.bz2 openbsd-97354c58d33c6c705b3780bdd53cc36bbf301839.zip |
fix a !foo & bar.
ok miod@, tedu@, pedro@
Diffstat (limited to 'src/lib/libc')
-rw-r--r-- | src/lib/libc/stdlib/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 2f0de36d90..d01158e10c 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: strtod.c,v 1.21 2005/08/08 08:05:37 espie Exp $ */ | 1 | /* $OpenBSD: strtod.c,v 1.22 2006/05/19 14:15:27 thib Exp $ */ |
2 | /**************************************************************** | 2 | /**************************************************************** |
3 | * | 3 | * |
4 | * The author of this software is David M. Gay. | 4 | * The author of this software is David M. Gay. |
@@ -532,7 +532,7 @@ lo0bits(ULong *y) | |||
532 | if (!(x & 1)) { | 532 | if (!(x & 1)) { |
533 | k++; | 533 | k++; |
534 | x >>= 1; | 534 | x >>= 1; |
535 | if (!x & 1) | 535 | if (!(x & 1)) |
536 | return 32; | 536 | return 32; |
537 | } | 537 | } |
538 | *y = x; | 538 | *y = x; |