Skip to content
Snippets Groups Projects
Unverified Commit 0c61515b authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

Fix signedness warning

parent 63575ffa
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ struct CmdDoctor : StoreCommand ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment