]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
gdbserver_tests/t.c: Fixed two occurrences of the same typo.
authorBart Van Assche <bvanassche@acm.org>
Sun, 15 May 2011 05:44:59 +0000 (05:44 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sun, 15 May 2011 05:44:59 +0000 (05:44 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11751

gdbserver_tests/t.c

index e40e457f34fcc5bfc9f2a31fa428d0cc674c5f0d..89ce57d04c0fe152a0e65ddb42ad801add6cb08b 100644 (file)
@@ -54,7 +54,7 @@ static void loops (int *loopnr)
 {
   int i, j;
   for (i = 0; i < LOOPS; i++)
-    for (j = 0; i < LOOPS; i++)
+    for (j = 0; j < LOOPS; j++)
       (*loopnr)++;
 }