wrap not check in parenthesis so the check is done correctly.

This commit is contained in:
Edward Rudd 2013-12-31 16:26:10 -05:00
parent 2572a05e8b
commit 4a817f45e5
1 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ rb_get_args(int argc, VALUE *argv, const char *format, ...)
VALUE *str = va_arg(ap, VALUE*); VALUE *str = va_arg(ap, VALUE*);
VALUE tmp = *arg; VALUE tmp = *arg;
if (!rb_type(tmp) == RUBY_T_STRING) if (!(rb_type(tmp) == RUBY_T_STRING))
rb_raise(rb_eTypeError, "Argument %d: Expected string", argI); rb_raise(rb_eTypeError, "Argument %d: Expected string", argI);
*str = tmp; *str = tmp;
@ -164,7 +164,7 @@ rb_get_args(int argc, VALUE *argv, const char *format, ...)
VALUE tmp = *arg; VALUE tmp = *arg;
if (!rb_type(tmp) == RUBY_T_STRING) if (!(rb_type(tmp) == RUBY_T_STRING))
rb_raise(rb_eTypeError, "Argument %d: Expected string", argI); rb_raise(rb_eTypeError, "Argument %d: Expected string", argI);
*s = RSTRING_PTR(tmp); *s = RSTRING_PTR(tmp);
@ -182,7 +182,7 @@ rb_get_args(int argc, VALUE *argv, const char *format, ...)
VALUE tmp = *arg++; VALUE tmp = *arg++;
if (!rb_type(tmp) == RUBY_T_STRING) if (!(rb_type(tmp) == RUBY_T_STRING))
rb_raise(rb_eTypeError, "Argument %d: Expected string", argI); rb_raise(rb_eTypeError, "Argument %d: Expected string", argI);
*s = RSTRING_PTR(tmp); *s = RSTRING_PTR(tmp);