diff options
| author | Philip Kaufmann <[email protected]> | 2012-10-05 19:27:39 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-10-05 23:31:58 +0200 |
| commit | 95e625d23546d181e14e223f0a0a79c63211c63b (patch) | |
| tree | 9250efbfb6271aaffcbee69e43f7056d679e2adb /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1905 from laanwj/2012_10_startup_gui_error (diff) | |
| download | discoin-95e625d23546d181e14e223f0a0a79c63211c63b.tar.xz discoin-95e625d23546d181e14e223f0a0a79c63211c63b.zip | |
fix wrong (signed/unsigned) printf format specifier in bitcoinrpc.cpp
- also includes the required bitcoinstrings.cpp update
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -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 0704173e5..829c8ee2d 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -796,7 +796,7 @@ void ThreadRPCServer2(void* parg) } catch(boost::system::system_error &e) { - strerr = strprintf(_("An error occurred while setting up the RPC port %i for listening on IPv6, falling back to IPv4: %s"), endpoint.port(), e.what()); + strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s"), endpoint.port(), e.what()); } try { |