aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-dispatch-operation.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-10 00:17:01 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-10 00:17:01 +0800
commit6272e31c5b0c182364a4fde088663b12a41e8f36 (patch)
tree88fa42b978581dcc9656a47458b63cb09957e91f /libempathy/empathy-dispatch-operation.c
parent7ba840f00ea11fa3f6458ab159b86ec37f99f451 (diff)
downloadgsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar.gz
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar.bz2
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar.lz
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar.xz
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.tar.zst
gsoc2013-empathy-6272e31c5b0c182364a4fde088663b12a41e8f36.zip
Remove useless goto
svn path=/trunk/; revision=2218
Diffstat (limited to 'libempathy/empathy-dispatch-operation.c')
-rw-r--r--libempathy/empathy-dispatch-operation.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy/empathy-dispatch-operation.c b/libempathy/empathy-dispatch-operation.c
index f035975ad..b9710dc0e 100644
--- a/libempathy/empathy-dispatch-operation.c
+++ b/libempathy/empathy-dispatch-operation.c
@@ -391,7 +391,7 @@ empathy_dispatch_operation_channel_ready_cb (TpChannel *channel,
{
priv->ready_handler = g_signal_connect (chat, "notify::ready",
G_CALLBACK (empathy_dispatcher_operation_tp_chat_ready_cb), self);
- goto readying;
+ return;
}
}
@@ -410,8 +410,6 @@ empathy_dispatch_operation_channel_ready_cb (TpChannel *channel,
ready:
empathy_dispatch_operation_set_status (self,
EMPATHY_DISPATCHER_OPERATION_STATE_PENDING);
-readying:
- return;
}
EmpathyDispatchOperation *