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:
Timo Sirainen 2001-01-11 10:15:34 +00:00 committed by cras
commit 1a3c700838
7 changed files with 19 additions and 11 deletions

View file

@ -87,7 +87,7 @@ static void last_msg_add(GSList **list, const char *nick, int own, int max)
rec = g_new(LAST_MSG_REC, 1);
rec->nick = g_strdup(nick);
if (g_slist_length(*list) == max) {
if ((int)g_slist_length(*list) == max) {
*list = g_slist_remove(*list,
g_slist_last(*list)->data);
}