summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-11 11:33:53 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-11 11:33:53 +0000
commit391d81e54da735f73d01d9c6955ef205097dacf2 (patch)
tree9cf3fbc36777c3be05491aff36a712b8c0354af9 /variable.c
parent489d6a24e40c396239e9a7f8d9d905cfa80c8fd8 (diff)
* variable.c: parenthesize macro arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
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)