From: Bart Van Assche Date: Sun, 15 May 2011 05:44:59 +0000 (+0000) Subject: gdbserver_tests/t.c: Fixed two occurrences of the same typo. X-Git-Tag: svn/VALGRIND_3_7_0~486 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29b06865cacbc61b230aa00e7c147482ceddb9e9;p=thirdparty%2Fvalgrind.git gdbserver_tests/t.c: Fixed two occurrences of the same typo. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11751 --- diff --git a/gdbserver_tests/t.c b/gdbserver_tests/t.c index e40e457f34..89ce57d04c 100644 --- a/gdbserver_tests/t.c +++ b/gdbserver_tests/t.c @@ -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)++; }