Commit 9b024dcf authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Fix warning: '*' interpreted as argument prefix

parent 19537b10
...@@ -8,7 +8,7 @@ $test_start = Time.now if Object.const_defined?(:Time) ...@@ -8,7 +8,7 @@ $test_start = Time.now if Object.const_defined?(:Time)
unless RUBY_ENGINE == "mruby" unless RUBY_ENGINE == "mruby"
# For bintest on Ruby # For bintest on Ruby
def t_print(*args) def t_print(*args)
print *args print(*args)
$stdout.flush $stdout.flush
nil nil
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment