summaryrefslogtreecommitdiff
path: root/src/irc/notifylist/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/notifylist/module.h')
-rw-r--r--src/irc/notifylist/module.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/irc/notifylist/module.h b/src/irc/notifylist/module.h
index ec67bcbb..ddffd9a1 100644
--- a/src/irc/notifylist/module.h
+++ b/src/irc/notifylist/module.h
@@ -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;