Merge pull request #4351 from shuujii/fix-warning-interpreted-as-argument-prefix

Fix warning: '*' interpreted as argument prefix
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-03-31 17:39:10 +09:00
committed by GitHub
+1 -1
View File
@@ -8,7 +8,7 @@ $test_start = Time.now if Object.const_defined?(:Time)
unless RUBY_ENGINE == "mruby"
# For bintest on Ruby
def t_print(*args)
print *args
print(*args)
$stdout.flush
nil
end