diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-23 23:29:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-23 23:29:32 +0000 |
commit | d1d70fd5d78af01040983831cbe9aa79f1d56425 (patch) | |
tree | da9c11fb31eafff80a27b5d8c2e108e271c1538d /src/irc/dcc/dcc-chat.c | |
parent | 8961d23171ff5d8e9eb15c1f935c9447d24ad2dc (diff) | |
download | irssi-d1d70fd5d78af01040983831cbe9aa79f1d56425.zip |
s/enum GInputCondition/int/ - enums aren't supposed to orred together i
think.. at least MIPSpro gave warnings about it and it also feels wrong :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@865 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/dcc/dcc-chat.c')
-rw-r--r-- | src/irc/dcc/dcc-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/dcc/dcc-chat.c b/src/irc/dcc/dcc-chat.c index f1f82647..7ebac58c 100644 --- a/src/irc/dcc/dcc-chat.c +++ b/src/irc/dcc/dcc-chat.c @@ -252,7 +252,7 @@ static void dcc_chat_connect(DCC_REC *dcc) source_host_ok ? source_host_ip : NULL); if (dcc->handle != -1) { dcc->tagconn = g_input_add(dcc->handle, - (GInputCondition) (G_INPUT_WRITE|G_INPUT_READ), + G_INPUT_WRITE | G_INPUT_READ, (GInputFunction) sig_chat_connected, dcc); } else { /* error connecting */ |