diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 18:57:31 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 18:57:31 +0100 |
commit | bc4b4694d8ec852ac2e192b794bfcb7b62fbc3fc (patch) | |
tree | 783cd92cf14c34fde67cef8db56783510af1572e /irc_im.c | |
parent | e1f3f94eaf2f18f4707dc48db9adc541f16d1679 (diff) |
Initialize the show variable in channel_update. This shouldn't have caused
any troubles, only unpredictable behaviour for users trying out unimplemented
functionality.
Diffstat (limited to 'irc_im.c')
-rw-r--r-- | irc_im.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ void bee_irc_channel_update( irc_t *irc, irc_channel_t *ic, irc_user_t *iu ) { struct irc_control_channel *icc; GSList *l; - gboolean show; + gboolean show = FALSE; if( ic == NULL ) { |