diff -r 95b41c0f938e -r 4cfdde0aa3f1 src/protocols/irc/irc.c --- a/src/protocols/irc/irc.c Sat Aug 04 01:37:49 2001 +0000 +++ b/src/protocols/irc/irc.c Mon Aug 06 17:50:46 2001 +0000 @@ -162,7 +162,7 @@ } -static void irc_send_im(struct gaim_connection *gc, char *who, char *message, int away) +static int irc_send_im(struct gaim_connection *gc, char *who, char *message, int away) { struct irc_data *idata = (struct irc_data *)gc->proto_data; @@ -195,7 +195,7 @@ irc_get_info(gc, temp); g_free(temp); - return; + return 0; } } else { @@ -205,6 +205,7 @@ write(idata->fd, buf, strlen(buf)); g_free(buf); + return 0; } static int find_id_by_name(struct gaim_connection *gc, char *name)