From: Brian Aker Date: Thu, 18 Mar 2010 22:40:55 +0000 (-0700) Subject: Style cleanup X-Git-Tag: 0.40~30 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=f9b2d2781b96614fbda754a3dbf29097c2bfe101;p=awesomized%2Flibmemcached Style cleanup --- diff --git a/tests/mem_functions.c b/tests/mem_functions.c index 9b050560..815f77b7 100644 --- a/tests/mem_functions.c +++ b/tests/mem_functions.c @@ -4490,7 +4490,7 @@ static test_return_t replication_randomize_mget_test(memcached_st *memc) const char *keys[]= { "key1", "key2", "key3", "key4", "key5", "key6", "key7" }; size_t len[]= { 4, 4, 4, 4, 4, 4, 4 }; - for (int x=0; x< 7; ++x) + for (size_t x= 0; x< 7; ++x) { rc= memcached_set(memc, keys[x], len[x], "1", 1, 0, 0); test_true(rc == MEMCACHED_SUCCESS);