Merge #8230: Fix LogPrint to LogPrintf

ba61949 Fix LogPrint to LogPrintf (TheLazieR Yip)
This commit is contained in:
Wladimir J. van der Laan
2016-06-21 10:09:39 +02:00

View File

@@ -27,7 +27,7 @@ bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pM
// Warn only once as this is performance-critical
static bool warned = false;
if (!warned) {
LogPrint("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__);
LogPrintf("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__);
warned = true;
}
}