projects
/
platform
/
core
/
system
/
pass.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46d6074
)
pass: Remove unnecessary continue statement
53/138453/2
author
Dongwoo Lee
<dwoo08.lee@samsung.com>
Wed, 12 Jul 2017 07:45:04 +0000
(16:45 +0900)
committer
Dongwoo Lee
<dwoo08.lee@samsung.com>
Thu, 13 Jul 2017 01:16:45 +0000
(
01:16
+0000)
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 <dwoo08.lee@samsung.com>
src/pass/pass.c
patch
|
blob
|
history
diff --git
a/src/pass/pass.c
b/src/pass/pass.c
index dfea1d0a412069797942d5bc663f8825c3e4e4ac..5d2c200e776515d9068ca5e578119a5c5135e1b6 100644
(file)
--- 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;
}
}