Parcourir la source

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

Emitted by MSVC
Anonymous Maarten il y a 3 ans
Parent
commit
ebae142aa4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      test/testhaptic.c

+ 1 - 1
test/testhaptic.c

@@ -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;