summaryrefslogtreecommitdiff
path: root/src/irc/core/channel-rejoin.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-11-23 22:57:59 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-11-23 22:57:59 +0000
commit1fd6f8faf6d1be323a4cecac0ebfffab31c9d692 (patch)
treed0910781fd26b7e4a9d0883bf7888a076d025d52 /src/irc/core/channel-rejoin.h
parent972c06ba17399eaeb1866d6f95c117b9f83e07bd (diff)
downloadirssi-1fd6f8faf6d1be323a4cecac0ebfffab31c9d692.zip
more changes from int xx:1 to unsigned int xx:1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@861 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/channel-rejoin.h')
-rw-r--r--src/irc/core/channel-rejoin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/channel-rejoin.h b/src/irc/core/channel-rejoin.h
index 9a2f4476..0b9cd151 100644
--- a/src/irc/core/channel-rejoin.h
+++ b/src/irc/core/channel-rejoin.h
@@ -4,7 +4,7 @@
typedef struct {
char *channel;
char *key;
- int joining:1;
+ unsigned int joining:1;
} REJOIN_REC;
void channel_rejoin_init(void);