mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
unsigned long -> gsize
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3132 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
1d31048105
commit
bb441ebbde
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user