testlib: added missing newline to error message

Change-Id: I8b205da4d225d99f8505a46d8d78ad302cb2b9e3
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
This commit is contained in:
Rohan McGovern 2012-05-17 17:35:35 +10:00 committed by Qt by Nokia
parent 8babea35dd
commit f12ef7d0b1

View File

@ -66,7 +66,7 @@ QAbstractTestLogger::QAbstractTestLogger(const char *filename)
stream = ::fopen(filename, "wt");
if (!stream) {
#endif
fprintf(stderr, "Unable to open file for logging: %s", filename);
fprintf(stderr, "Unable to open file for logging: %s\n", filename);
::exit(1);
}
}