mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 07:32:04 +02:00
fixed some signed/unsigned issues
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1304 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
fb488720f5
commit
51c1fee749
5 changed files with 11 additions and 11 deletions
|
|
@ -101,7 +101,7 @@ static void dcc_send_read_size(SEND_DCC_REC *dcc)
|
|||
memcpy(&bytes, dcc->count_buf, 4);
|
||||
bytes = (guint32) ntohl(bytes);
|
||||
|
||||
dcc->gotalldata = (long) bytes == dcc->transfd;
|
||||
dcc->gotalldata = (unsigned long) bytes == dcc->transfd;
|
||||
dcc->count_pos = 0;
|
||||
|
||||
if (dcc->waitforend && dcc->gotalldata) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue