From 23f3c84c79010be0368e969b69b0c0dbb4d267cf Mon Sep 17 00:00:00 2001 From: avolkov Date: Mon, 19 May 2008 21:34:09 +0000 Subject: [PATCH] Fixed a couple signedness warnings git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2980 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/master.c b/sc2/src/sc2code/master.c index 84e5e2473..a641a1da8 100644 --- a/sc2/src/sc2code/master.c +++ b/sc2/src/sc2code/master.c @@ -123,7 +123,7 @@ FindMasterShip (SPECIES_ID ship_ref) for (hStarShip = GetHeadLink (&master_q); hStarShip; hStarShip = hNextShip) { - DWORD ref; + SPECIES_ID ref; MASTER_SHIP_INFO *MasterPtr; MasterPtr = LockMasterShip (&master_q, hStarShip); @@ -147,7 +147,7 @@ FindMasterShipIndex (SPECIES_ID ship_ref) for (index = 0, hStarShip = GetHeadLink (&master_q); hStarShip; ++index, hStarShip = hNextShip) { - DWORD ref; + SPECIES_ID ref; MASTER_SHIP_INFO *MasterPtr; MasterPtr = LockMasterShip (&master_q, hStarShip);