summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSyam Sidhardhan <syamsidhardh@gmail.com>2011-08-11 00:13:28 +0530
committerJohan Hedberg <johan.hedberg@intel.com>2011-08-12 10:54:25 +0300
commitb781ed9cc2e122f216ef16d13c3669dc7478481c (patch)
tree47f37a7269628904898801a55e9ef6dc369fc481 /tools
parent0253f58958c615b49306d4f7968269630d2ae5f9 (diff)
downloadobexd-b781ed9cc2e122f216ef16d13c3669dc7478481c.tar.gz
Remove bogus extra semicolons
Diffstat (limited to 'tools')
-rw-r--r--tools/test-server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test-server.c b/tools/test-server.c
index 6096737..a25dfb9 100644
--- a/tools/test-server.c
+++ b/tools/test-server.c
@@ -260,7 +260,7 @@ static gboolean unix_accept(GIOChannel *chan, GIOCondition cond, gpointer data)
g_obex_add_request_function(obex, G_OBEX_OP_GET, handle_get, NULL);
g_obex_add_request_function(obex, G_OBEX_OP_CONNECT, handle_connect,
NULL);
- clients = g_slist_append(clients, obex);;
+ clients = g_slist_append(clients, obex);
return TRUE;
}