Skip to content

Commit

Permalink
Merge pull request #889 from thelazier/v0.12.1.x-bc8230
Browse files Browse the repository at this point in the history
Fix LogPrint to LogPrintf
  • Loading branch information
schinzelh authored Jun 20, 2016
2 parents 22077db + 679d469 commit 7b931e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/winshutdownmonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 7b931e1

Please sign in to comment.