aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-07 12:16:10 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-07 12:16:10 +0000
commit766d38e65933951039bb395250db5c5a2232b81a (patch)
treeb8f7c80ceb4e07c3d5a930609b4eb5733cedcfa5
parent9ce40aacef33a9bcb7c565f2fc0bfd493bf73088 (diff)
downloadruby-766d38e65933951039bb395250db5c5a2232b81a.tar.gz
* debug.c: parenthesize macro arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--debug.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c2d5dab76..bee0173bb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Dec 7 21:14:03 2010 Tanaka Akira <akr@fsij.org>
+
+ * debug.c: parenthesize macro arguments.
+
Tue Dec 7 21:06:38 2010 Kouhei Sutou <kou@cozmixng.org>
* lib/rexml/doctype.rb, test/rexml/test_doctype.rb: suppress warnings.
diff --git a/debug.c b/debug.c
index 4959f922f6..dcc710bc4a 100644
--- a/debug.c
+++ b/debug.c
@@ -141,7 +141,7 @@ set_debug_option(const char *str, int len, void *arg)
{
#define SET_WHEN(name, var) do { \
if (len == sizeof(name) - 1 && \
- strncmp(str, name, len) == 0) { \
+ strncmp(str, (name), len) == 0) { \
extern int var; \
var = 1; \
return; \