Skip to content

Commit 2882d59

Browse files
committed
Fix the Qt5 build after d95ba75
Sorry, my own fault this time.
1 parent f04f123 commit 2882d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/bitcoin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, cons
134134
{
135135
Q_UNUSED(context);
136136
const char *category = (type == QtDebugMsg) ? "qt" : NULL;
137-
LogPrint(category, "GUI: %s\n", QString::toStdString(msg));
137+
LogPrint(category, "GUI: %s\n", msg.toStdString());
138138
}
139139
#endif
140140

0 commit comments

Comments
 (0)