Fix typo in function name 78/240278/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 5 Aug 2020 05:04:24 +0000 (14:04 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 5 Aug 2020 05:04:24 +0000 (14:04 +0900)
Change-Id: Ib2c7f85040bf814bc6ef651a0f05b8517137736d
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
client/sticker_dbus.c

index 2b653da..9189de2 100644 (file)
@@ -366,7 +366,7 @@ static int _dbus_signal_init(GDBusConnection *gdbus_connection, int *monitor_id,
     return ret;
 }
 
-static GDBusMessage *_get_gbus_message(GVariant *body, const char *cmd)
+static GDBusMessage *_get_gdbus_message(GVariant *body, const char *cmd)
 {
     GDBusMessage *message = NULL;
     message = g_dbus_message_new_method_call(
@@ -438,7 +438,7 @@ static int _send_sync_message(GDBusConnection *gdbus_connection, GVariant *body,
     int ret = STICKER_CLIENT_ERROR_NONE;
     GDBusMessage *msg = NULL;
 
-    msg = _get_gbus_message(body, cmd);
+    msg = _get_gdbus_message(body, cmd);
     if (msg == NULL)
         return STICKER_CLIENT_ERROR_IO_ERROR;
 
@@ -456,7 +456,7 @@ static int _send_async_message(GDBusConnection *gdbus_connection, GVariant *body
     GDBusMessage *msg = NULL;
     GError *err = NULL;
 
-    msg = _get_gbus_message(body, cmd);
+    msg = _get_gdbus_message(body, cmd);
     if (msg == NULL)
         return STICKER_CLIENT_ERROR_IO_ERROR;