mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-02 09:54:29 +00:00
Merge pull request #1911 from Diapolo/fix_signed_unsigned
fix wrong (signed/unsigned) printf format specifier in bitcoinrpc.cpp
This commit is contained in:
commit
089b10a28a
@ -796,7 +796,7 @@ void ThreadRPCServer2(void* parg)
|
|||||||
}
|
}
|
||||||
catch(boost::system::system_error &e)
|
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 {
|
try {
|
||||||
|
@ -19,7 +19,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", ""
|
|||||||
"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:"
|
"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:"
|
||||||
"@STRENGTH)"),
|
"@STRENGTH)"),
|
||||||
QT_TRANSLATE_NOOP("bitcoin-core", ""
|
QT_TRANSLATE_NOOP("bitcoin-core", ""
|
||||||
"An error occurred while setting up the RPC port %i for listening on IPv6, "
|
"An error occurred while setting up the RPC port %u for listening on IPv6, "
|
||||||
"falling back to IPv4: %s"),
|
"falling back to IPv4: %s"),
|
||||||
QT_TRANSLATE_NOOP("bitcoin-core", ""
|
QT_TRANSLATE_NOOP("bitcoin-core", ""
|
||||||
"An error occurred while setting up the RPC port %u for listening on IPv4: %s"),
|
"An error occurred while setting up the RPC port %u for listening on IPv4: %s"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user