From: Dongwoo Lee Date: Wed, 12 Jul 2017 07:45:04 +0000 (+0900) Subject: pass: Remove unnecessary continue statement X-Git-Tag: submit/tizen/20170719.015733~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c54d86e34f209c4af04e2a6675f1caa0dd332ab5;p=platform%2Fcore%2Fsystem%2Fpass.git pass: Remove unnecessary continue statement There is continue statement at the end of while block which have no meaning. Unnecessary continue statement will be removed. Change-Id: Ifd014b397bfb867d9fbc13c78e39ee613601fec3 Signed-off-by: Dongwoo Lee --- diff --git a/src/pass/pass.c b/src/pass/pass.c index dfea1d0..5d2c200 100644 --- a/src/pass/pass.c +++ b/src/pass/pass.c @@ -256,7 +256,6 @@ static int pass_init_done(void *data, void *user_data) if (ret < 0) _E("Cannot put the pass '%s' resource (%d)\n", cdata->res_name, ret); - continue; } } @@ -280,7 +279,6 @@ static int pass_exit_done(void) if (ret < 0) { _E("Cannot put the pass '%s' resource (%d)\n", cdata->res_name, ret); - continue; } }