# HG changeset patch # User Daniel Atallah # Date 1159322489 0 # Node ID eb2152e14df9973f46e3bd88451c174da1f487ca # Parent 43bae5968317992eb493c2a4d4451f1bf8308e51 [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 diff -r 43bae5968317 -r eb2152e14df9 libgaim/protocols/simple/simple.c --- 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;