From: adrian <> Date: Mon, 14 Oct 2002 17:06:53 +0000 (+0000) Subject: Fix a type issue under MacOS 10.2.1. For some reason the define resolves X-Git-Tag: SQUID_3_0_PRE1~652 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac458aed466b763852fdda14f03e5b04a6a8264e;p=thirdparty%2Fsquid.git Fix a type issue under MacOS 10.2.1. For some reason the define resolves to unsigned.. --- diff --git a/src/comm_select.cc b/src/comm_select.cc index 9efa9ef265..c1441eba0a 100644 --- a/src/comm_select.cc +++ b/src/comm_select.cc @@ -1,6 +1,6 @@ /* - * $Id: comm_select.cc,v 1.61 2002/10/13 20:35:00 robertc Exp $ + * $Id: comm_select.cc,v 1.62 2002/10/14 11:06:53 adrian Exp $ * * DEBUG: section 5 Socket Functions * @@ -331,7 +331,7 @@ comm_select(int msec) int callicp = 0, callhttp = 0; int calldns = 0; int maxindex; - int k; + unsigned int k; int j; #if DEBUG_FDBITS int i;