From: stom.hwang Date: Tue, 16 Aug 2016 12:24:21 +0000 (+0900) Subject: Fix coding rule X-Git-Tag: accepted/tizen/common/20160818.144552^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83e61177ed913327e0a22b55816d84ab4140e124;p=platform%2Fcore%2Fuifw%2Fvoice-control.git Fix coding rule Change-Id: I8784d3b9aa834a7b319fcbe5aac7332a3e02cc73 Signed-off-by: stom.hwang --- diff --git a/server/vcd_recorder.c b/server/vcd_recorder.c index 6c87c63..52a9f3a 100644 --- a/server/vcd_recorder.c +++ b/server/vcd_recorder.c @@ -82,7 +82,7 @@ static float get_volume_decibel(char* data, int size); #ifdef TV_MSF_WIFI_MODE static void __msf_wifi_audio_data_receive_cb(msf_wifi_voice_data_s *voice_data, void* user_data) { - if (0 != strncmp(g_current_audio_type, VCP_AUDIO_ID_MSF, sizeof(VCP_AUDIO_ID_MSF))){ + if (0 != strncmp(g_current_audio_type, VCP_AUDIO_ID_MSF, sizeof(VCP_AUDIO_ID_MSF))) { SLOG(LOG_ERROR, TAG_VCD, "[Recorder ERROR] current audio type is (%s)", g_current_audio_type); return; } @@ -139,7 +139,7 @@ static void _bt_cb_hid_state_changed(int result, bool connected, const char *rem static void _bt_hid_audio_data_receive_cb(bt_hid_voice_data_s *voice_data, void *user_data) { - if (0 != strncmp(g_current_audio_type, VCP_AUDIO_ID_BLUETOOTH, sizeof(VCP_AUDIO_ID_BLUETOOTH))){ + if (0 != strncmp(g_current_audio_type, VCP_AUDIO_ID_BLUETOOTH, sizeof(VCP_AUDIO_ID_BLUETOOTH))) { SLOG(LOG_ERROR, TAG_VCD, "[Recorder ERROR] current audio type is (%s)", g_current_audio_type); return; }