From 5c5f4eb32e91b7c0181a028cf14c101953b6c86d Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Mon, 25 Feb 2019 00:50:19 -0800 Subject: [PATCH] Fix format specifier type mismatch --- src/qt/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/utils.cpp b/src/qt/utils.cpp index a962c42e95..b29a200dfd 100644 --- a/src/qt/utils.cpp +++ b/src/qt/utils.cpp @@ -34,7 +34,7 @@ void wxMissingImplementation( const char fileName[], unsigned lineNumber, { // Make it look similar to the assert messages: - fprintf( stderr, "%s(%d): Missing implementation of \"%s\"\n", fileName, lineNumber, feature ); + fprintf( stderr, "%s(%u): Missing implementation of \"%s\"\n", fileName, lineNumber, feature ); } void wxQtFillMouseButtons( Qt::MouseButtons buttons, wxMouseState *state )