summaryrefslogtreecommitdiff
path: root/src/irc/bot
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/bot')
-rw-r--r--src/irc/bot/botnet-connection.c2
-rw-r--r--src/irc/bot/botnet.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/bot/botnet-connection.c b/src/irc/bot/botnet-connection.c
index bd25d30b..d1a583e1 100644
--- a/src/irc/bot/botnet-connection.c
+++ b/src/irc/bot/botnet-connection.c
@@ -58,7 +58,7 @@ static void sig_bot_read(BOT_REC *bot)
for (;;) {
recvlen = bot->handle == NULL ? -1 :
net_receive(bot->handle, tmpbuf, sizeof(tmpbuf));
- ret = line_split(tmpbuf, recvlen, &str, (LINEBUF_REC **) &bot->buffer);
+ ret = line_split(tmpbuf, recvlen, &str, &bot->buffer);
if (ret == 0)
break;
diff --git a/src/irc/bot/botnet.h b/src/irc/bot/botnet.h
index 44b09bf7..0372de22 100644
--- a/src/irc/bot/botnet.h
+++ b/src/irc/bot/botnet.h
@@ -46,7 +46,7 @@ typedef struct {
GIOChannel *handle;
int read_tag;
- void *buffer;
+ LINEBUF_REC *buffer;
int file_handle; /* if bot is sending a file to us */