summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-03-30 15:43:48 +0200
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-03-30 13:54:34 +0000
commit73f64650288a8e1c6e8bcfc08bbc692da976053a (patch)
tree43dbda9d9518e99c4fc60aedc20f95f51f777c25
parent7d725e09ad7d525200514c9d3cf15766786ab7e7 (diff)
add missing newline for error messages
Change-Id: I5c9caed3fd7fa82351c3da4121109b7d6e2caf92 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--src/app/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index bbc2b23..01d7705 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -182,7 +182,7 @@ int main(int argc, char* argv[])
fflush(stdout);
}
} catch (const Exception &e) {
- fprintf(stderr, "jom: %s", qPrintable(e.message()));
+ fprintf(stderr, "jom: %s\n", qPrintable(e.message()));
result = 2;
}
return result;