From 97354c58d33c6c705b3780bdd53cc36bbf301839 Mon Sep 17 00:00:00 2001 From: thib <> Date: Fri, 19 May 2006 14:15:27 +0000 Subject: fix a !foo & bar. ok miod@, tedu@, pedro@ --- src/lib/libc/stdlib/strtod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') 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 @@ -/* $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; -- cgit v1.2.3-55-g6feb