]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix a type issue under MacOS 10.2.1. For some reason the define resolves
authoradrian <>
Mon, 14 Oct 2002 17:06:53 +0000 (17:06 +0000)
committeradrian <>
Mon, 14 Oct 2002 17:06:53 +0000 (17:06 +0000)
to unsigned..

src/comm_select.cc

index 9efa9ef265bd0a1418199c847445fa13928e8236..c1441eba0a14d75ded45c2ad63e9ff4526f86687 100644 (file)
@@ -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;