aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVMiklos <vmiklos@frugalware.org>2007-10-06 22:44:00 +0200
committerVMiklos <vmiklos@frugalware.org>2007-10-06 22:44:00 +0200
commit548bf76666373f661bef6f4c74c57818d79d973a (patch)
treed82504e2f79e6166f6ff582f7e7743aedacbe049
parentc81d0ef2f921e16f74aae98320f551d822dac2e1 (diff)
remove debug printfs
-rw-r--r--skype/skype.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/skype/skype.c b/skype/skype.c
index 3ba8cc33..22f422f2 100644
--- a/skype/skype.c
+++ b/skype/skype.c
@@ -314,16 +314,11 @@ static gboolean skype_read_callback( gpointer data, gint fd, b_input_condition c
{
struct groupchat *gc = skype_chat_by_name(ic, info);
if(!gc)
- {
- printf("gc is null, id is '%s'\n", info);
/* Private message */
imcb_buddy_msg(ic, sd->handle, sd->body, 0, 0);
- }
else
- {
- printf("gc is not null, id is '%s'\n", info);
+ /* Groupchat message */
imcb_chat_msg(gc, sd->handle, sd->body, 0, 0);
- }
}
}
}