Fix build break due to fprintf in previous commit
This commit is contained in:
parent
f24a6719fa
commit
5e565167f2
@ -100,7 +100,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
|
|||||||
const QString &msg)
|
const QString &msg)
|
||||||
{
|
{
|
||||||
if (type == QtFatalMsg) {
|
if (type == QtFatalMsg) {
|
||||||
fprintf(stderr, qPrintable(msg));
|
fprintf(stderr, "%s\n", qPrintable(msg));
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
@ -116,7 +116,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
|
|||||||
const QString &msg)
|
const QString &msg)
|
||||||
{
|
{
|
||||||
if (type == QtFatalMsg) {
|
if (type == QtFatalMsg) {
|
||||||
fprintf(stderr, qPrintable(msg));
|
fprintf(stderr, "%s\n", qPrintable(msg));
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user