diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-03-18 10:51:53 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-03-18 10:51:53 +0000 |
commit | 04e96774059e725397685ccd1e821cfbb57acc67 (patch) | |
tree | 85e2076c7622dd7e1e48ca1b9a258ffd3c4632fb /src | |
parent | 3ff8d488e72db1a8cfbfa5ba5f0c66c8f7c8f890 (diff) | |
download | weechat-04e96774059e725397685ccd1e821cfbb57acc67.zip |
Fixed bug on ppc
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/irc-channel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irc/irc-channel.c b/src/irc/irc-channel.c index 84a7c2fb4..c10295dbd 100644 --- a/src/irc/irc-channel.c +++ b/src/irc/irc-channel.c @@ -424,7 +424,8 @@ channel_remove_dcc (t_irc_dcc *ptr_dcc) int channel_get_notify_level (t_irc_server *server, t_irc_channel *channel) { - char *name, *pos, *pos2, notify; + char *name, *pos, *pos2; + int notify; if ((!server) || (!channel)) return NOTIFY_LEVEL_DEFAULT; |