testhaptic: fix conversion from `size_t` to `int`

Emitted by MSVC
This commit is contained in:
Anonymous Maarten 2022-10-06 01:05:59 +02:00 committed by Anonymous Maarten
parent 18c776e155
commit ebae142aa4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ main(int argc, char **argv)
return 0;
}
i = SDL_strlen(name);
i = (int)SDL_strlen(name);
if ((i < 3) && SDL_isdigit(name[0]) && ((i == 1) || SDL_isdigit(name[1]))) {
index = SDL_atoi(name);
name = NULL;