Fix build break due to incomplete changes

This commit is contained in:
Srivats P 2019-07-02 19:18:14 +05:30
parent d827e43a11
commit ed7bb8bd69
3 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
const QString &msg)
{
if (type == QtFatalMsg) {
fprintf(stderr, qPrintable(msg));
fprintf(stderr, "%s\n", qPrintable(msg));
fflush(stderr);
abort();
}

View File

@ -112,7 +112,7 @@ void StreamBase::protoDataCopyFrom(const OstProto::Stream &stream)
while (iter->hasNext())
{
AbstractProtocol *p = iter->next();
p->toBeNamed();
p->updateCacheability();
}
delete iter;

View File

@ -116,7 +116,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
const QString &msg)
{
if (type == QtFatalMsg) {
fprintf(stderr, qPrintable(msg));
fprintf(stderr, "%s\n", qPrintable(msg));
fflush(stderr);
abort();
}