summaryrefslogtreecommitdiff
path: root/lib/intprops.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-08-24 22:24:48 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-08-24 22:25:13 -0700
commitf10125053f26ab537734651f2bf530ae0bdea66b (patch)
treeb3f4c30f8bf15d079862b87aea87ad78025e26bf /lib/intprops.h
parenta073adb9e928352d0b1433cc67bdb0b3d026081e (diff)
downloadgnulib-f10125053f26ab537734651f2bf530ae0bdea66b.tar.gz
intprops: fix paren typo on old platforms
Problem reported by John E. Malmberg in: https://bugs.gnu.org/24300#13 * lib/intprops.h (_GL_INT_OP_WRAPV_LONGISH) [__GNUC__ < 5 && !__has_builtin (__builtin_add_overflow) && (__STDC_VERSION__ < 201112 || _GL__GENERIC_BOGUS) && !defined LLONG_MAX]: Remove stray paren.
Diffstat (limited to 'lib/intprops.h')
-rw-r--r--lib/intprops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/intprops.h b/lib/intprops.h
index fe6c789825..6030760708 100644
--- a/lib/intprops.h
+++ b/lib/intprops.h
@@ -418,7 +418,7 @@ verify (TYPE_MAXIMUM (long long int) == LLONG_MAX);
# else
# define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \
_GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
- long int, LONG_MIN, LONG_MAX))
+ long int, LONG_MIN, LONG_MAX)
# endif
#endif