aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheLazieR Yip <thelazier@gmail.com>2016-06-21 00:46:59 +0700
committerGitHub <noreply@github.com>2016-06-21 00:46:59 +0700
commitba6194928a03a474b442744511da4c753441469d (patch)
treeacaf60ca27c2c2a479840f26805033accfca0176
parent44fdacc19f9f429274f48f39a8223591a4d1988d (diff)
Fix LogPrint to LogPrintf
Printing Log without category defined should use LogPrintf
-rw-r--r--src/qt/winshutdownmonitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/winshutdownmonitor.cpp b/src/qt/winshutdownmonitor.cpp
index 1bc4f77959..a11da50588 100644
--- a/src/qt/winshutdownmonitor.cpp
+++ b/src/qt/winshutdownmonitor.cpp
@@ -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;
}
}