summaryrefslogtreecommitdiffstats
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
commit713cb5c51298df218cc2ac69a4ce9be8e458af8d (patch)
tree063cc846674c1d5b23e0badcea50a33264e033a0 /eval.c
parent8de6a98fc9064a26ea9b55ae24401138cbd08cc5 (diff)
downloadruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.tar.gz
ruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.tar.xz
ruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.zip
* eval.c (CALLARGS): remove last semicolon. C90 compiler doesn't
allow any lines (even if they're empty) within variable declaretions. git-svn-id: http://svn.ruby-lang.org/repos/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 99c70411a..e3a240eda 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) {\