From 391d81e54da735f73d01d9c6955ef205097dacf2 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 11 Jan 2011 11:33:53 +0000 Subject: * variable.c: parenthesize macro arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index b372eb2591..ab0cd7b592 100644 --- a/variable.c +++ b/variable.c @@ -1425,7 +1425,7 @@ static const rb_data_type_t autoload_data_type = { }; #define check_autoload_table(av) \ - (struct st_table *)rb_check_typeddata(av, &autoload_data_type) + (struct st_table *)rb_check_typeddata((av), &autoload_data_type) void rb_autoload(VALUE mod, ID id, const char *file) -- cgit v1.2.3