From: Krisztian Litkey Date: Thu, 6 Nov 2014 13:14:25 +0000 (+0200) Subject: mm-test: remove useless 0-ness check. X-Git-Tag: v0.0.65~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0182aa26cc20defd6ab1c7b574a3623788a50fea;p=profile%2Fivi%2Fmurphy.git mm-test: remove useless 0-ness check. --- diff --git a/src/common/tests/mm-test.c b/src/common/tests/mm-test.c index 35a0107..c22b866 100644 --- a/src/common/tests/mm-test.c +++ b/src/common/tests/mm-test.c @@ -169,7 +169,7 @@ static int pool_tests(void) limit = 0; prealloc = 512; - max = limit ? limit : 8382; + max = 8382; ptrs = mrp_allocz(max * sizeof(obj_t)); if (ptrs == NULL) {