mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Some signed/unsigned warnings removed. Don't call fe_exec_init/deinit in win32
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1104 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
348060073d
commit
1a3c700838
7 changed files with 19 additions and 11 deletions
|
|
@ -185,7 +185,7 @@ static void channel_send_query(IRC_SERVER_REC *server, int query)
|
|||
|
||||
chans = rec->queries[query];
|
||||
|
||||
if (g_slist_length(rec->queries[query]) > server->max_query_chans) {
|
||||
if ((int)g_slist_length(rec->queries[query]) > server->max_query_chans) {
|
||||
GSList *lastchan;
|
||||
|
||||
lastchan = g_slist_nth(rec->queries[query], server->max_query_chans-1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue