fix coverity issue 98/216298/1 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.004230 accepted/tizen/5.5/unified/mobile/hotfix/20201027.090343 accepted/tizen/unified/20191023.142733 submit/tizen/20191023.065345 submit/tizen_5.5/20191031.000010 submit/tizen_5.5_mobile_hotfix/20201026.185104 tizen_5.5.m2_release
authorwansu.yoo <wansu.yoo@samsung.com>
Wed, 23 Oct 2019 06:36:10 +0000 (15:36 +0900)
committerwansu.yoo <wansu.yoo@samsung.com>
Wed, 23 Oct 2019 06:37:10 +0000 (15:37 +0900)
-. NESTING_INDENT_MISMATCH

Change-Id: Iab561e83cf091cdc147e231f9e424c78851af87a
Signed-off-by: wansu.yoo <wansu.yoo@samsung.com>
CMain/src/orchestration_server.c

index 2985938..1a00eee 100644 (file)
@@ -138,8 +138,9 @@ static int _request_service(GVariant *parameters, int origin_client_pid)
     if (g_strcmp0(app_name, "") == 0)
         return ORCH_ERROR_INVALID_PARAMETER;
 
-    if (origin_client_pid != client_pid)
+    if (origin_client_pid != client_pid) {
         DEBUG("not matched clinet_pid from client and dbus, origin_client_pid(%d), client_pid(%d)\n", origin_client_pid, client_pid);
+    }
 
     result = _request_service_cb(app_name, self_select, service_info, count, origin_client_pid);