From 8365992f90910df595c1e2d4dabdba1d7b97709e Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 5 Oct 2012 19:27:39 +0200 Subject: [PATCH] fix wrong (signed/unsigned) printf format specifier in bitcoinrpc.cpp - also includes the required bitcoinstrings.cpp update --- src/bitcoinrpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 7cee3561796..a062df02605 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2251,7 +2251,7 @@ void ThreadRPCServer2(void* parg) } catch(boost::system::system_error &e) { - ThreadSafeMessageBox(strprintf(_("An error occurred while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), + ThreadSafeMessageBox(strprintf(_("An error occurred while setting up the RPC port %u for listening: %s"), endpoint.port(), e.what()), _("Error"), wxOK | wxMODAL); StartShutdown(); return;