aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-09 21:56:59 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-09 21:56:59 +0000
commit4b731d3bc973dae866211d6f6f9574300718cfe7 (patch)
tree063cc846674c1d5b23e0badcea50a33264e033a0 /eval.c
parent3b6f1b9b898ce638ffb1dfb8c492fa6e93c85ee3 (diff)
downloadruby-4b731d3bc973dae866211d6f6f9574300718cfe7.tar.gz
* eval.c (CALLARGS): remove last semicolon. C90 compiler doesn't
allow any lines (even if they're empty) within variable declaretions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 99c70411a1..e3a240eda1 100644
--- a/eval.c
+++ b/eval.c
@@ -2146,7 +2146,7 @@ copy_node_scope(NODE *node, NODE *rval)
# define TMP_ALLOC(n) ALLOCA_N(VALUE,n)
#endif
-#define CALLARGS int argc; VALUE *argv; struct BLOCK *block = 0, _block;
+#define CALLARGS int argc; VALUE *argv; struct BLOCK *block = 0, _block
#define SETUP_ARGS0(anode,extra) do {\
NODE *n = anode, *bpass = 0;\
if (n && nd_type(n) == NODE_BLOCK_PASS) {\