From: Bruno Haible <bruno@clisp.org>
Date: Sat, 1 Oct 2011 09:58:48 +0000 (+0200)
Subject: isfinite: Fix syntax error in configure test.
X-Git-Tag: v0.1~1719
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=4b697ee80d4c53b4cb1b59ea90e832a2a16f207b;p=gnulib.git

isfinite: Fix syntax error in configure test.

* m4/isfinite.m4 (gl_ISFINITEL_WORKS): Fix syntax error.
---

diff --git a/ChangeLog b/ChangeLog
index 6486bac5b1..0d2bc0da55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2011-10-01  Bruno Haible  <bruno@clisp.org>
 
+	isfinite: Fix syntax error in configure test.
+	* m4/isfinite.m4 (gl_ISFINITEL_WORKS): Fix syntax error.
+
 	isfinite: Fix typo.
 	* m4/isfinite.m4 (gl_ISFINITEL_WORKS): When cross-compiling, set
 	gl_cv_func_isfinitel_works, not gl_cv_func_isnanl_works.
diff --git a/m4/isfinite.m4 b/m4/isfinite.m4
index 1fca56abf3..9bc8c4dcdb 100644
--- a/m4/isfinite.m4
+++ b/m4/isfinite.m4
@@ -148,7 +148,7 @@ int main ()
     static memory_long_double x =
       { LDBL80_WORDS (0x0000, 0x83333333, 0x00000000) };
     if (isfinite (x.value))
-      return |= 64;
+      result |= 64;
   }
 #endif