kike: explicit conversion from pointer to boolean
In practice the values in the map may only be 1 or 0, so it doesn't matter, but in C it is better to be safe than sorry.
This commit is contained in:
parent
50ed74a740
commit
b9eddabedd
2
kike.c
2
kike.c
|
@ -2728,7 +2728,7 @@ irc_try_join (struct client *c, const char *channel_name, const char *key)
|
|||
else if (channel_get_user (chan, c))
|
||||
return;
|
||||
|
||||
bool invited_by_chanop = str_map_find (&c->invites, channel_name);
|
||||
bool invited_by_chanop = !!str_map_find (&c->invites, channel_name);
|
||||
if ((chan->modes & IRC_CHAN_MODE_INVITE_ONLY)
|
||||
&& !client_in_mask_list (c, &chan->invite_list)
|
||||
&& !invited_by_chanop)
|
||||
|
|
Loading…
Reference in New Issue