Commit 2746aabc authored by rw's avatar rw

fix string catenation

parent 48dfc69e
......@@ -1290,13 +1290,13 @@ def main():
import os
import sys
if not len(sys.argv) == 4:
sys.stderr.write(('Usage: %s <benchmark vtable count>')
('<benchmark read count> <benchmark build count>')
('\n' % sys.argv[0]))
sys.stderr.write((' Provide COMPARE_GENERATED_TO_GO=1 to check')
('for bytewise comparison to Go data.\n'))
sys.stderr.write((' Provide COMPARE_GENERATED_TO_JAVA=1 to check')
('for bytewise comparison to Java data.\n'))
sys.stderr.write('Usage: %s <benchmark vtable count>'
'<benchmark read count> <benchmark build count>\n'
% sys.argv[0])
sys.stderr.write(' Provide COMPARE_GENERATED_TO_GO=1 to check'
'for bytewise comparison to Go data.\n')
sys.stderr.write(' Provide COMPARE_GENERATED_TO_JAVA=1 to check'
'for bytewise comparison to Java data.\n')
sys.stderr.flush()
sys.exit(1)
......
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