diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-26 20:48:39 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-26 20:48:39 +0300 |
commit | 241afb3b9982d9c6d836b6dbbcef10418d80299c (patch) | |
tree | 087738d3c59a1600571954629cc5889d2921f4bc | |
parent | 7e8fb49f7c5829ed5a6ac4a46deb54a3e65dfad5 (diff) |
Align build log header values
-rw-r--r-- | mod/mod-build-log.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/mod-build-log.cxx b/mod/mod-build-log.cxx index 543292a..3dddd82 100644 --- a/mod/mod-build-log.cxx +++ b/mod/mod-build-log.cxx @@ -201,12 +201,11 @@ handle (request& rq, response& rs) os << "package: " << b->package_name << endl << "version: " << b->package_version << endl - << "config: " << b->configuration << endl + << "config: " << b->configuration << endl << "machine: " << *b->machine << " (" << *b->machine_summary << ")" << endl - << "target: " << (i->target - ? i->target->string () - : "default") << endl << endl; + << "target: " << (i->target ? i->target->string () : "default") << endl + << endl; if (op.empty ()) { |