From ac458aed466b763852fdda14f03e5b04a6a8264e Mon Sep 17 00:00:00 2001 From: adrian <> Date: Mon, 14 Oct 2002 17:06:53 +0000 Subject: [PATCH] Fix a type issue under MacOS 10.2.1. For some reason the define resolves to unsigned.. --- src/comm_select.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.2