util.h: Use size_t for static array sizes
This commit is contained in:
parent
20e46a98dd
commit
ccba946973
3 changed files with 5 additions and 5 deletions
src
|
@ -332,7 +332,7 @@ struct InputPrivate
|
|||
{
|
||||
int index;
|
||||
|
||||
if (code < 0 || code > mapToIndexN-1)
|
||||
if (code < 0 || (size_t) code > mapToIndexN-1)
|
||||
index = 0;
|
||||
else
|
||||
index = mapToIndex[code];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue