summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libc/stdlib/strtod.c4
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;