summaryrefslogtreecommitdiff
path: root/lib/count-one-bits.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-10-21 02:33:32 +0200
committerBruno Haible <bruno@clisp.org>2007-10-21 02:33:32 +0200
commit1d926bafeda3f6344f4c715357d1086a2f1a5359 (patch)
tree52e09c60786dd03ce5c10d710652ef40774ee39a /lib/count-one-bits.h
parent980d2709cea1e46299cb5b4f74f7c7a95d07ef06 (diff)
downloadgnulib-1d926bafeda3f6344f4c715357d1086a2f1a5359.tar.gz
Fix typo in macro name.
Diffstat (limited to 'lib/count-one-bits.h')
-rw-r--r--lib/count-one-bits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/count-one-bits.h b/lib/count-one-bits.h
index 76e5573d54..b1087c3ea2 100644
--- a/lib/count-one-bits.h
+++ b/lib/count-one-bits.h
@@ -25,7 +25,7 @@
/* Expand the code which computes the number of 1-bits of the local
variable 'x' of type TYPE (an unsigned integer type) and returns it
from the current function. */
-#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR >= 4)
+#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
#define COUNT_ONE_BITS(BUILTIN, TYPE) \
return BUILTIN (x);
#else