summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-05-11 16:02:58 +0100
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2011-05-11 14:51:35 -0400
commit9b9e4b12f7825dce352f9f48d6e829be30c7512a (patch)
tree06e9ce1f573e4f6a11d0a7bd2b3883d6e9ff852a /src
parent67c955953493fa5ddac776defd23f1cad262eb14 (diff)
all: fix -Wunused-but-set-variable warnings
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/test-api.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test-api.c b/src/test-api.c
index be6ef3a..1f8f6cf 100644
--- a/src/test-api.c
+++ b/src/test-api.c
@@ -35,7 +35,7 @@ main (int argc, char *argv[])
TpDBusDaemon *bus;
TpProxy *proxy;
GError *error = NULL;
- char *account, *identifer;
+ char *account;
g_type_init ();
mainloop = g_main_loop_new (NULL, FALSE);
@@ -47,7 +47,6 @@ main (int argc, char *argv[])
}
account = g_strdup_printf ("%s%s", TP_ACCOUNT_OBJECT_PATH_BASE, argv[1]);
- identifer = argv[2];
bus = tp_dbus_daemon_dup (&error);
g_assert_no_error (error);