From 21cfcbfb0537c4e3689d42bc9fb5c69872b315f4 Mon Sep 17 00:00:00 2001 From: Allanis Date: Sat, 24 May 2014 14:16:21 +0100 Subject: [PATCH] [Fix] Removed a warning. --- src/input.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/input.c b/src/input.c index 6c3cf9c..3a585ae 100644 --- a/src/input.c +++ b/src/input.c @@ -263,10 +263,9 @@ static void input_keyConvDestroy(void) { * @return ID of the key. */ SDLKey input_keyConv(char* name) { - SDLKey k; + SDLKey k, m; size_t l; char buf; - int m; l = strlen(name); buf = tolower(name[0]);