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
commit f3eebcf515
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6

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;
}
}