From bf9c70b1008e1eada462955a6420e79a7d2a8352 Mon Sep 17 00:00:00 2001 From: TheLazieR Yip Date: Tue, 21 Jun 2016 00:46:59 +0700 Subject: Fix LogPrint to LogPrintf Printing Log without category defined should use LogPrintf Github-Pull: #8230 Meta: PR should have been based on master in the first place --- src/qt/winshutdownmonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qt/winshutdownmonitor.cpp') 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; } } -- cgit v1.2.3