From a43aba1ff90d87bbc8ae7e5d63dc276ba65d4dae Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sun, 8 Apr 2007 14:39:59 +0200 Subject: [PATCH] Prefer rb_funcall2() over rb_funcall(). --- ext/ext.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/ext.c b/ext/ext.c index ea620be..e99d41c 100644 --- a/ext/ext.c +++ b/ext/ext.c @@ -557,13 +557,13 @@ c_to_eet (VALUE self) long i; #endif - props = rb_funcall (self, id_to_eet_properties, 0); + props = rb_funcall2 (self, id_to_eet_properties, 0, NULL); if (rb_obj_is_kind_of (props, rb_cHash) == Qfalse || !RHASH (props)->tbl->num_entries) rb_raise (ePropError, "invalid EET properties"); - name = rb_funcall (self, id_to_eet_name, 0); + name = rb_funcall2 (self, id_to_eet_name, 0, NULL); StringValue (name); if (!RSTRING (name)->len || @@ -575,7 +575,7 @@ c_to_eet (VALUE self) #ifdef HAVE_RB_HASH_FOREACH rb_hash_foreach (props, for_each_prop, stream); #else - keys = RARRAY (rb_funcall (props, id_keys, 0)); + keys = RARRAY (rb_funcall2 (props, id_keys, 0, NULL)); for (i = 0; i < keys->len; i++) for_each_prop (keys->ptr[i], @@ -590,7 +590,7 @@ c_to_eet (VALUE self) chunk = rb_class_new_instance (2, args, cChunk); - return rb_funcall (chunk, id_to_s, 0); + return rb_funcall2 (chunk, id_to_s, 0, NULL); } static VALUE -- 2.30.2