aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2012-10-05 19:27:39 +0200
committerLuke Dashjr <[email protected]>2012-10-15 14:57:10 +0000
commit8365992f90910df595c1e2d4dabdba1d7b97709e (patch)
tree8a8ee04ff4210b560e4a3e03fbe4d268600033a8 /src
parentUpdate supported translations (diff)
downloaddiscoin-8365992f90910df595c1e2d4dabdba1d7b97709e.tar.xz
discoin-8365992f90910df595c1e2d4dabdba1d7b97709e.zip
fix wrong (signed/unsigned) printf format specifier in bitcoinrpc.cpp
- also includes the required bitcoinstrings.cpp update
Diffstat (limited to 'src')
-rw-r--r--src/bitcoinrpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index 7cee35617..a062df026 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;