From 80fb9c7b4e94a57f72bd22bee41759e01ccbfbcf Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 29 Mar 2011 15:25:25 +0000 Subject: * ext/stringio/stringio.c: parenthesize macro arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/stringio') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 208fd4d76e..594813cbc0 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -30,7 +30,7 @@ struct StringIO { static void strio_init(int, VALUE *, struct StringIO *); -#define IS_STRIO(obj) (rb_typeddata_is_kind_of(obj, &strio_data_type)) +#define IS_STRIO(obj) (rb_typeddata_is_kind_of((obj), &strio_data_type)) #define error_inval(msg) (errno = EINVAL, rb_sys_fail(msg)) static struct StringIO * @@ -80,7 +80,7 @@ static const rb_data_type_t strio_data_type = { }, }; -#define check_strio(self) ((struct StringIO*)rb_check_typeddata(self, &strio_data_type)) +#define check_strio(self) ((struct StringIO*)rb_check_typeddata((self), &strio_data_type)) static struct StringIO* get_strio(VALUE self) -- cgit v1.2.3