Pārlūkot izejas kodu

Fixed warning C4389: '==': signed/unsigned mismatch

Sam Lantinga 8 mēneši atpakaļ
vecāks
revīzija
ef52a4d4df
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/process/windows/SDL_windowsprocess.c

+ 1 - 1
src/process/windows/SDL_windowsprocess.c

@@ -99,7 +99,7 @@ static bool join_arguments(const char * const *args, LPWSTR *args_out)
 {
     size_t len;
     int i;
-    int i_out;
+    size_t i_out;
     char *result;
     bool batch_file = is_batch_file_path(args[0]);