From ae2e7cc68682f9647bdc2b19e8243006709a88b6 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 18 Nov 2007 19:11:43 +0000 Subject: [PATCH] fix an unsigned/signed comparison warning on lhnetsocket_t.inetsocket git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7707 d7cf8633-e32d-0410-b094-e92efae38249 --- lhnet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lhnet.h b/lhnet.h index c865f9a9..d17015fa 100644 --- a/lhnet.h +++ b/lhnet.h @@ -67,7 +67,7 @@ int LHNETADDRESS_Compare(const lhnetaddress_t *address1, const lhnetaddress_t *a typedef struct lhnetsocket_s { lhnetaddress_t address; - int inetsocket; + unsigned int inetsocket; struct lhnetsocket_s *next, *prev; } lhnetsocket_t; -- 2.39.2