summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYoungjae Shin <yj99.shin@samsung.com>2017-09-13 11:38:47 +0900
committerYoungjae Shin <yj99.shin@samsung.com>2017-09-13 11:39:03 +0900
commit01d869632feffca4356b3e5352bef75f3771e384 (patch)
tree3e0af7e5192e896047aee436a6d239c2ba7cd44c /src
parenta5f141a8b3c7d3c40cb1c18491527c9c342b0842 (diff)
downloadui-gadget-1-01d869632feffca4356b3e5352bef75f3771e384.tar.gz
ui-gadget-1-01d869632feffca4356b3e5352bef75f3771e384.tar.bz2
ui-gadget-1-01d869632feffca4356b3e5352bef75f3771e384.zip
fix coding rule error
Change-Id: I3e8a62f7bdcc11ace0fda262b152b21e9cd33556 Signed-off-by: Youngjae Shin <yj99.shin@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/manager.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/manager.c b/src/manager.c
index e10935e..6510f23 100644
--- a/src/manager.c
+++ b/src/manager.c
@@ -588,9 +588,8 @@ static int ugman_ug_getopt(ui_gadget_h ug)
return -1;
/* Indicator Option */
- if (ug->mode == UG_MODE_FULLVIEW) {
+ if (ug->mode == UG_MODE_FULLVIEW)
ugman_indicator_update(ug->opt, UG_EVENT_NONE);
- }
return 0;
}
@@ -1366,11 +1365,10 @@ void *ugman_get_conformant(void)
return NULL;
}
- if (eng_ops && eng_ops->create) {
+ if (eng_ops && eng_ops->create)
ret = eng_ops->request(ug_man.win, NULL, UG_UI_REQ_GET_CONFORMANT);
- } else {
+ else
_WRN("ui engine is not loaded");
- }
return ret;
}