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
This commit is contained in:
Timo Sirainen 2000-11-23 22:57:59 +00:00 committed by cras
commit 1fd6f8faf6
10 changed files with 40 additions and 40 deletions

View file

@ -9,13 +9,13 @@ typedef struct {
char *user, *host, *realname, *awaymsg;
int idle_time;
int host_ok:1; /* host matches the one in notifylist = this is the right person*/
int away_ok:1; /* not away, or we don't care about it */
int idle_ok:1; /* idle time is low enough, or we don't care about it */
unsigned int host_ok:1; /* host matches the one in notifylist = this is the right person*/
unsigned int away_ok:1; /* not away, or we don't care about it */
unsigned int idle_ok:1; /* idle time is low enough, or we don't care about it */
int away:1; /* nick is away */
int join_announced:1; /* join to IRC has been announced */
int idle_changed:1; /* idle time is lower than in last check */
unsigned int away:1; /* nick is away */
unsigned int join_announced:1; /* join to IRC has been announced */
unsigned int idle_changed:1; /* idle time is lower than in last check */
time_t last_whois;
} NOTIFY_NICK_REC;

View file

@ -6,7 +6,7 @@ typedef struct {
char **ircnets; /* if non-NULL, check only from these irc networks */
/* notify when AWAY status changes (uses /USERHOST) */
int away_check:1;
unsigned int away_check:1;
/* notify when idle time is reset and it was bigger than this
(uses /WHOIS and PRIVMSG events) */
int idle_check_time;