[svn] Wrap macro arg in parentheses.

This commit is contained in:
hniksic 2006-04-11 11:03:14 -07:00
parent a46aa44f57
commit 2a58c7d207
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-04-11 Hrvoje Niksic <hniksic@xemacs.org>
* hash.c (TOLOWER): Wrap macro arg in parentheses.
2006-04-08 Hrvoje Niksic <hniksic@xemacs.org>
* http.c (parse_content_disposition): Doc fix.

View File

@ -54,7 +54,7 @@ so, delete this exception statement from your version. */
# define countof(x) (sizeof (x) / sizeof ((x)[0]))
# endif
# include <ctype.h>
# define TOLOWER(x) tolower ((unsigned char) x)
# define TOLOWER(x) tolower ((unsigned char) (x))
# if __STDC_VERSION__ >= 199901L
# include <stdint.h> /* for uintptr_t */
# else