Apply coding rule 67/54767/1
authordc7.lim <dc7.lim@samsung.com>
Fri, 18 Dec 2015 01:04:12 +0000 (10:04 +0900)
committerdc7.lim <dc7.lim@samsung.com>
Fri, 18 Dec 2015 01:04:12 +0000 (10:04 +0900)
Change-Id: Ieaf7f4f898bd2b7639525c859c0b80ff2dac3c86

packaging/libcall-manager.spec
src/call-manager.c

index 539aaaeb2c584100b6ee9688b9eac45a096ded49..8e6a8067ec1086dc6a3d6d529b9b00a6d05c1368 100755 (executable)
@@ -1,6 +1,6 @@
 %define major 0
 %define minor 0
-%define patchlevel 6
+%define patchlevel 7
 %define ext_feature 0
 
 Name:           libcall-manager
index 9aca021c8a50a04947b080bf53f819116ce4d605..d27e7406091a00cae78ff0780520c364a96e536b 100755 (executable)
@@ -253,7 +253,7 @@ static void __cm_on_signal_recv(GDBusConnection *conn, const gchar *name,
                cm_vr_status_e vr_status = -1;
                cm_vr_status_extra_type_e extra_type;
 
-               g_variant_get (param, "(ii)", &vr_status, &extra_type);
+               g_variant_get(param, "(ii)", &vr_status, &extra_type);
                dbg("received vr_status: '%d', extra_type: 0x%02x", vr_status, extra_type);
 
                ((cm_voice_record_status_cb)ad->cb_fn)(vr_status, extra_type, ad->user_data);
@@ -1936,7 +1936,7 @@ EXPORT_API int cm_set_voice_record_status_cb(cm_client_h handle, cm_voice_record
        return __cm_set_cb(handle, DBUS_CALL_MANAGER_SIGNAL_VOICE_RECORD_STATUS, cb, user_data);
 }
 
-EXPORT_API int cm_unset_voice_record_status_cb (cm_client_h handle)
+EXPORT_API int cm_unset_voice_record_status_cb(cm_client_h handle)
 {
        CM_RETURN_VAL_IF_FAIL(handle, CM_ERROR_INVALID_PARAMETER);
        return __cm_unset_cb(handle, DBUS_CALL_MANAGER_SIGNAL_VOICE_RECORD_STATUS);