From dfa1e6f47a7713c28ec39f65920036b3114652d1 Mon Sep 17 00:00:00 2001 From: jkjo92 Date: Thu, 18 Aug 2016 16:45:43 +0900 Subject: [PATCH] fix coding rule Change-Id: I0a54dd6d1e1aaa163be716890ac329b204329201 Signed-off-by: jkjo92 --- server/fido_selection_ui_adaptor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/fido_selection_ui_adaptor.c b/server/fido_selection_ui_adaptor.c index 03f31af..cf0ceab 100644 --- a/server/fido_selection_ui_adaptor.c +++ b/server/fido_selection_ui_adaptor.c @@ -300,13 +300,13 @@ __launch_svc_ui(bundle *ui_req) int ui_pid = -1; - for(; i < _UI_LAUNCH_RETRY_COUNT; i++) { + for (; i < _UI_LAUNCH_RETRY_COUNT; i++) { ui_pid = aul_launch_app_for_uid(_UI_SVC_PACKAGE, ui_req, OWNER_UID); - if(ui_pid > 0) + if (ui_pid > 0) break; } - if(ui_pid < 0) + if (ui_pid < 0) return FIDO_ERROR_UNKNOWN; __mainLoop = NULL; -- 2.7.4