Mercurial > pidgin
changeset 14634:eb2152e14df9
[gaim-migrate @ 17380]
Fix the send_raw method signature (even though it still doesn't really functionally match what the core wants)
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Wed, 27 Sep 2006 02:01:29 +0000 |
parents | 43bae5968317 |
children | ba12c5e9d7e7 |
files | libgaim/protocols/simple/simple.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libgaim/protocols/simple/simple.c Wed Sep 27 01:16:38 2006 +0000 +++ b/libgaim/protocols/simple/simple.c Wed Sep 27 02:01:29 2006 +0000 @@ -521,7 +521,7 @@ } } -static void simple_send_raw(GaimConnection *gc, const char *buf, int len) +static int simple_send_raw(GaimConnection *gc, const char *buf, int len) { sendout_pkt(gc, buf); return len;