More warning cleanups

This commit is contained in:
twinaphex 2015-09-05 14:34:33 +02:00
parent c4316b791c
commit 43632b95ff
2 changed files with 3 additions and 3 deletions

View File

@ -521,10 +521,10 @@ void libretro_get_current_core_pathname(char *name, size_t size)
{
char c = id[i];
if (isspace((int)c) || isblank(c))
if (isspace((int)c) || isblank((int)c))
name[i] = '_';
else
name[i] = tolower(c);
name[i] = tolower((int)c);
}
}

View File

@ -124,7 +124,7 @@ bool input_keyboard_line_event(
state->size--;
}
}
else if (isprint(c))
else if (isprint((int)c))
{
/* Handle left/right here when suitable */