summaryrefslogtreecommitdiff
path: root/src/lib/agent-helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/agent-helper.c')
-rw-r--r--src/lib/agent-helper.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/agent-helper.c b/src/lib/agent-helper.c
index cbd8b44..bf50bcc 100644
--- a/src/lib/agent-helper.c
+++ b/src/lib/agent-helper.c
@@ -300,9 +300,7 @@ static void _bt_agent_method_call_func(GDBusConnection *connection, const gchar
if (invoke)
{
- GVariant* vars[1];
- vars[0] = g_variant_new_uint32(ret);
- g_dbus_method_invocation_return_value(invocation, g_variant_new_tuple(vars, 1));
+ g_dbus_method_invocation_return_value(invocation, g_variant_new ("(u)", ret));
}
else
{
@@ -347,9 +345,7 @@ static void _bt_agent_method_call_func(GDBusConnection *connection, const gchar
if (invoke)
{
- GVariant* vars[1];
- vars[0] = g_variant_new_string(ret);
- g_dbus_method_invocation_return_value(invocation, g_variant_new_tuple(vars, 1));
+ g_dbus_method_invocation_return_value(invocation, g_variant_new ("(s)", ret));
}
else
{