Variable arg has Gvariant* type, but format string is not used properly.
Even it changed to %p properly, just print out address of Gvariant
structure has no meaning. So, this patch get rid of this unnecessary
information.
Change-Id: I54229953dfd66c3ff3219cb08d578472cd1ddb60
Signed-off-by: Dongwoo Lee <dwoo08.lee@samsung.com>
ret = g_dbus_connection_send_message(g_dbus_sys_conn, message,
G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, &err);
if (!ret) {
- _E("failed to broadcast [%s][%d]", method, arg);
+ _E("failed to broadcast [%s]", method);
g_object_unref(message);
return -ECOMM;
}