tests/tests2/79_vla_continue.c: Fix off-by-one error.

master
Edmund Grimley Evans 2015-11-13 21:49:29 +00:00
parent c39bc9caa7
commit 3712c958f4
1 changed files with 2 additions and 2 deletions

View File

@ -69,10 +69,10 @@ void test4()
do { do {
int a[f()]; int a[f()];
addr[count] = a; addr[--count] = a;
continue; continue;
} while(count--); } while (count);
if(addr[9] == addr[0]) { if(addr[9] == addr[0]) {
printf("OK\n"); printf("OK\n");