From: Trond Norbye Date: Sat, 21 Mar 2009 13:34:52 +0000 (+0100) Subject: Fixed actual loop in add_wrapper ;-) X-Git-Tag: 0.27~8 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=8214907e7b5a2666a97db540fdca46f45f453a92;p=awesomized%2Flibmemcached Fixed actual loop in add_wrapper ;-) --- diff --git a/tests/function.c b/tests/function.c index f7dad825..faa45494 100644 --- a/tests/function.c +++ b/tests/function.c @@ -558,7 +558,7 @@ static test_return add_wrapper(memcached_st *memc) max= 10; #endif - for (x= 0; x < 10000; x++) + for (x= 0; x < max; x++) add_test(memc); return 0;