diff options
-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 ()) { |