From: DoHyun Pyun Date: Tue, 29 Nov 2016 08:45:19 +0000 (+0900) Subject: Fix the potential build error X-Git-Tag: submit/tizen/20161205.050350~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8442b43dcee7df94af96ca2a069759e043b8fcc;p=apps%2Fnative%2Fug-bluetooth-efl.git Fix the potential build error Change-Id: I81dc9b3f6d458e7353d45bf16271f33814f35339 Signed-off-by: DoHyun Pyun --- 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;