From bb441ebbdea677433b80fffdf42c44a9493c0ae4 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 11 Oct 2003 01:59:31 +0000 Subject: [PATCH] unsigned long -> gsize git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3132 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/net-nonblock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/net-nonblock.c b/src/core/net-nonblock.c index 97d3bccd..5eaae8d8 100644 --- a/src/core/net-nonblock.c +++ b/src/core/net-nonblock.c @@ -40,7 +40,7 @@ typedef struct { static int g_io_channel_write_block(GIOChannel *channel, void *data, int len) { - unsigned long ret; + gsize ret; int err, sent; sent = 0; @@ -56,7 +56,7 @@ static int g_io_channel_write_block(GIOChannel *channel, void *data, int len) static int g_io_channel_read_block(GIOChannel *channel, void *data, int len) { time_t maxwait; - unsigned long ret; + gsize ret; int err, received; maxwait = time(NULL)+2;