Mercurial > pidgin
diff libgaim/protocols/simple/simple.c @ 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 | 8ed6ef220b2d |
| children | 118fd0dc5b6e |
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;
