diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-20 00:42:11 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-20 00:42:11 +0100 |
commit | bad41f567bd8b8e04d092e8e6771fee74b205032 (patch) | |
tree | 6895c70705eabfe0543835a0f012a373f527d1b6 /protocols/bee_user.c | |
parent | acd7959038aa74be7e4c05a206ba2882b15fd16b (diff) |
libpurple: Fix typing notifications (in and out). Closes #671.
Diffstat (limited to 'protocols/bee_user.c')
-rw-r--r-- | protocols/bee_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/bee_user.c b/protocols/bee_user.c index 5acd5b83..db7842a0 100644 --- a/protocols/bee_user.c +++ b/protocols/bee_user.c @@ -240,7 +240,7 @@ void imcb_buddy_msg( struct im_connection *ic, const char *handle, char *msg, ui imcb_log( ic, "Message from unknown handle %s:\n%s", handle, msg ); } -void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags ) +void imcb_buddy_typing( struct im_connection *ic, const char *handle, uint32_t flags ) { bee_user_t *bu; |