From 5de507694b0ca43739033d75cf20fcf7ea31a2dd Mon Sep 17 00:00:00 2001 From: James Haley Date: Sat, 18 Sep 2010 17:35:57 +0000 Subject: Tons of warnings fixed - now only 7 warnings at warning level 3, and most of those are outside of our own code (get on those signed/unsigned mismatches in the midi code, fraggle ;) Subversion-branch: /branches/strife-branch Subversion-revision: 2110 --- src/m_controls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/m_controls.c') diff --git a/src/m_controls.c b/src/m_controls.c index a9beed46..b3d5dc21 100644 --- a/src/m_controls.c +++ b/src/m_controls.c @@ -355,8 +355,8 @@ void M_BindMenuControls(void) void M_BindChatControls(unsigned int num_players) { - char name[32]; // haleyjd: 20 not large enough - Thank you, come again! - int i; + char name[32]; // haleyjd: 20 not large enough - Thank you, come again! + unsigned int i; // haleyjd: signedness conflict M_BindVariable("key_multi_msg", &key_multi_msg); -- cgit v1.2.3