summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-21 12:42:11 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-21 12:42:11 +0000
commitc07d295204de26a8926b5c58c2b849022e5db02b (patch)
tree11d612240ca1cccba0fde282e7e971de9a986a93 /include
parent1ac4e6d2746144598404487b67630b31288db8ae (diff)
* include/ruby/util.h: removed extra semicolon in definition of
macro. * compile.c: ditto. * cont.c: ditto. * math.c: ditto. * node.c: ditto. * parse.y: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/util.h b/include/ruby/util.h
index e82f537728..02aa643916 100644
--- a/include/ruby/util.h
+++ b/include/ruby/util.h
@@ -62,7 +62,7 @@ void ruby_unsetenv(const char *);
#undef setenv
#undef unsetenv
#define setenv(name,val) ruby_setenv((name),(val))
-#define unsetenv(name,val) ruby_unsetenv(name);
+#define unsetenv(name,val) ruby_unsetenv(name)
char *ruby_strdup(const char *);
#undef strdup