Browse Source

fix a !foo & bar.

ok miod@, tedu@, pedro@
OPENBSD_4_0
thib 18 years ago
parent
commit
c7485b1da9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib/libc/stdlib/strtod.c

+ 2
- 2
src/lib/libc/stdlib/strtod.c View File

@ -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. * The author of this software is David M. Gay.
@ -532,7 +532,7 @@ lo0bits(ULong *y)
if (!(x & 1)) { if (!(x & 1)) {
k++; k++;
x >>= 1; x >>= 1;
if (!x & 1)
if (!(x & 1))
return 32; return 32;
} }
*y = x; *y = x;


Loading…
Cancel
Save