Procházet zdrojové kódy

test: forgot to change a variable.

Fixes Bugzilla #3787.
Ryan C. Gordon před 7 roky
rodič
revize
846a9ab95e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      test/testautomation_sdltest.c

+ 1 - 1
test/testautomation_sdltest.c

@@ -49,7 +49,7 @@ sdltest_generateRunSeed(void *arg)
   }
 
   /* Negative cases */
-  for (j = -2; j <= 0; i++) {   
+  for (j = -2; j <= 0; j++) {
      result = SDLTest_GenerateRunSeed((const int)j);
      SDLTest_AssertPass("Call to SDLTest_GenerateRunSeed()");
      SDLTest_AssertCheck(result == NULL, "Verify returned value is not NULL");