[Fix] Removed a warning.

This commit is contained in:
Allanis 2014-05-24 14:16:21 +01:00
parent 0064c2bf0b
commit 21cfcbfb05

View File

@ -263,10 +263,9 @@ static void input_keyConvDestroy(void) {
* @return ID of the key. * @return ID of the key.
*/ */
SDLKey input_keyConv(char* name) { SDLKey input_keyConv(char* name) {
SDLKey k; SDLKey k, m;
size_t l; size_t l;
char buf; char buf;
int m;
l = strlen(name); l = strlen(name);
buf = tolower(name[0]); buf = tolower(name[0]);