aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-11-16 13:29:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-11-16 13:29:24 +0300
commit902607801442c1a44b6386d51f3c12360be3ef54 (patch)
tree3c3a6f9071b47cea73d7e086fc28578650b76d85 /build2
parenta0760272b634c6e468d4772e80aab27d4b05b787 (diff)
Fix GCC maybe used uninitialized warning
Diffstat (limited to 'build2')
-rw-r--r--build2/test/script/runner.cxx2
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