From e8442b43dcee7df94af96ca2a069759e043b8fcc Mon Sep 17 00:00:00 2001 From: DoHyun Pyun Date: Tue, 29 Nov 2016 17:45:19 +0900 Subject: [PATCH] Fix the potential build error Change-Id: I81dc9b3f6d458e7353d45bf16271f33814f35339 Signed-off-by: DoHyun Pyun --- common/src/ui/bt-main-ug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/ui/bt-main-ug.c b/common/src/ui/bt-main-ug.c index ebb30b3..09f5b92 100644 --- a/common/src/ui/bt-main-ug.c +++ b/common/src/ui/bt-main-ug.c @@ -1108,7 +1108,7 @@ int get_display_ug_state(Cfg_Item_State *stat, void *data) int ret = vconf_get_int(VCONFKEY_BT_STATUS, &value); retvm_if(ret != 0, ret, "fail to get vconf key!"); - if (value == VCONFKEY_BT_STATUS_OFF + if (value == VCONFKEY_BT_STATUS_OFF) *stat = Cfg_Item_Off; else *stat = Cfg_Item_On; -- 2.7.4