diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-16 13:29:24 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-16 13:29:24 +0300 |
commit | 902607801442c1a44b6386d51f3c12360be3ef54 (patch) | |
tree | 3c3a6f9071b47cea73d7e086fc28578650b76d85 | |
parent | a0760272b634c6e468d4772e80aab27d4b05b787 (diff) |
Fix GCC maybe used uninitialized warning
-rw-r--r-- | build2/test/script/runner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/test/script/runner.cxx b/build2/test/script/runner.cxx index dfe4981..958927e 100644 --- a/build2/test/script/runner.cxx +++ b/build2/test/script/runner.cxx @@ -1607,7 +1607,7 @@ namespace build2 catch (const system_error& e) { fail (ll) << "unable to execute " << c.program << " builtin: " - << e; + << e << endf; } } else |