Fix signedness warning
This commit is contained in:
parent
63575ffa38
commit
0c61515be1
|
@ -91,7 +91,7 @@ struct CmdDoctor : StoreCommand
|
||||||
|
|
||||||
void checkStoreProtocol(unsigned int storeProto)
|
void checkStoreProtocol(unsigned int storeProto)
|
||||||
{
|
{
|
||||||
auto clientProto = GET_PROTOCOL_MAJOR(SERVE_PROTOCOL_VERSION) == GET_PROTOCOL_MAJOR(storeProto)
|
unsigned int clientProto = GET_PROTOCOL_MAJOR(SERVE_PROTOCOL_VERSION) == GET_PROTOCOL_MAJOR(storeProto)
|
||||||
? SERVE_PROTOCOL_VERSION
|
? SERVE_PROTOCOL_VERSION
|
||||||
: PROTOCOL_VERSION;
|
: PROTOCOL_VERSION;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue