summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivek Dasmohapatra <vivek@collabora.co.uk>2011-04-01 14:35:53 +0100
committerVivek Dasmohapatra <vivek@collabora.co.uk>2011-04-05 14:19:12 +0100
commit1d22bf4561985c4f2e3a5f70757d537186aab59d (patch)
tree1c3cba75aaaced839b3065c7ab51b8b8bbfddb7a
parent6060526c748a8829444e1d108dc6547b6c4622e7 (diff)
downloadtelepathy-mission-control-1d22bf4561985c4f2e3a5f70757d537186aab59d.tar.gz
Debugging & whitespace trivia
-rw-r--r--src/mcd-dispatcher.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mcd-dispatcher.c b/src/mcd-dispatcher.c
index fa9f5033..067a701d 100644
--- a/src/mcd-dispatcher.c
+++ b/src/mcd-dispatcher.c
@@ -2333,7 +2333,6 @@ messages_send_message_start (DBusGMethodInvocation *dbus_context,
g_hash_table_insert (props, TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, &h_type);
g_hash_table_insert (props, TP_PROP_CHANNEL_TARGET_ID, &target);
- DEBUG ("Creating internal request");
/* compare dispatcher_request_channel: we _are_ the handler for *
* this channel so we don't need to check_preferred_handler here *
* Also: this deep-copies the props hash, so we can throw ours away */
@@ -2345,8 +2344,8 @@ messages_send_message_start (DBusGMethodInvocation *dbus_context,
if (channel == NULL || request == NULL)
{
- g_set_error (&error, TP_ERRORS, TP_ERROR_RESOURCE_UNAVAILABLE,
- "Could not create channel request");
+ g_set_error (&error, TP_ERRORS, TP_ERROR_RESOURCE_UNAVAILABLE,
+ "Could not create channel request");
goto failure;
}
@@ -2357,7 +2356,6 @@ messages_send_message_start (DBusGMethodInvocation *dbus_context,
/* we don't need to predict the handler either, same reason as above *
* we do, however, want to call proceed on the request, as it is ours */
- DEBUG ("calling proceed");
_mcd_request_proceed (request, NULL);
goto finished;