From: Steinar H. Gunderson Date: Mon, 15 Apr 2013 08:37:18 +0000 (+0200) Subject: Fix a signed/unsigned warning. X-Git-Tag: 1.0.0~106^2 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=03569c70282f68a4bc9b259fbf5b7a2b4c5594b3 Fix a signed/unsigned warning. --- diff --git a/server.cpp b/server.cpp index 789d8ea..3a767a9 100644 --- a/server.cpp +++ b/server.cpp @@ -397,7 +397,7 @@ sending_data_again: // We don't have any more data for this client, so put it to sleep. // This is postcondition #3. stream->put_client_to_sleep(client); - } else if (more_data && ret == bytes_to_send) { + } else if (more_data && size_t(ret) == bytes_to_send) { goto sending_data_again; } break;