From 29b06865cacbc61b230aa00e7c147482ceddb9e9 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 15 May 2011 05:44:59 +0000 Subject: [PATCH] gdbserver_tests/t.c: Fixed two occurrences of the same typo. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11751 --- gdbserver_tests/t.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)++; } -- 2.47.2