From 7b5e72c3a95dbf213a38b94a5fb4dbf04e03943e Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 14 Dec 2010 22:18:39 +0000 Subject: * hash.c: parenthesize macro arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- hash.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index b05adc6f4d..c769e60986 100644 --- a/hash.c +++ b/hash.c @@ -2003,7 +2003,7 @@ static int path_tainted = -1; static char **origenviron; #ifdef _WIN32 -#define GET_ENVIRON(e) (e = rb_w32_get_environ()) +#define GET_ENVIRON(e) ((e) = rb_w32_get_environ()) #define FREE_ENVIRON(e) rb_w32_free_environ(e) static char **my_environ; #undef environ @@ -2019,11 +2019,11 @@ extern char **environ; #define FREE_ENVIRON(e) #endif #ifdef ENV_IGNORECASE -#define ENVMATCH(s1, s2) (STRCASECMP(s1, s2) == 0) -#define ENVNMATCH(s1, s2, n) (STRNCASECMP(s1, s2, n) == 0) +#define ENVMATCH(s1, s2) (STRCASECMP((s1), (s2)) == 0) +#define ENVNMATCH(s1, s2, n) (STRNCASECMP((s1), (s2), (n)) == 0) #else -#define ENVMATCH(n1, n2) (strcmp(n1, n2) == 0) -#define ENVNMATCH(s1, s2, n) (memcmp(s1, s2, n) == 0) +#define ENVMATCH(n1, n2) (strcmp((n1), (n2)) == 0) +#define ENVNMATCH(s1, s2, n) (memcmp((s1), (s2), (n)) == 0) #endif static VALUE -- cgit v1.2.3