diff options
| author | Philip Kaufmann <[email protected]> | 2012-10-05 19:27:39 +0200 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-10-15 14:57:10 +0000 |
| commit | 8365992f90910df595c1e2d4dabdba1d7b97709e (patch) | |
| tree | 8a8ee04ff4210b560e4a3e03fbe4d268600033a8 /src | |
| parent | Update supported translations (diff) | |
| download | discoin-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.cpp | 2 |
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; |