mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Wrap macro arg in parentheses.
This commit is contained in:
parent
a46aa44f57
commit
2a58c7d207
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user