Fixed line end in error message.

This commit is contained in:
yhirose 2015-06-03 17:36:56 -04:00
parent a4ad0d0d39
commit 8ce5650924

View File

@ -58,7 +58,7 @@ int main(int argc, const char** argv)
Value val;
string msg;
if (!run(path, env, buff.data(), buff.size(), val, msg, print_ast)) {
cerr << msg;
cerr << msg << endl;
return -1;
}
}