summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/fe-windows.h2
-rw-r--r--src/fe-common/core/hilight-text.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/fe-common/core/fe-windows.h b/src/fe-common/core/fe-windows.h
index 16fff673..cc915f0c 100644
--- a/src/fe-common/core/fe-windows.h
+++ b/src/fe-common/core/fe-windows.h
@@ -24,7 +24,7 @@ typedef struct {
GSList *waiting_channels; /* list of "<server tag> <channel>" */
int lines;
- int destroying:1;
+ unsigned int destroying:1;
/* window-specific command line history */
GList *cmdhist, *histpos;
diff --git a/src/fe-common/core/hilight-text.h b/src/fe-common/core/hilight-text.h
index 0d2291a4..83ab8f8c 100644
--- a/src/fe-common/core/hilight-text.h
+++ b/src/fe-common/core/hilight-text.h
@@ -9,10 +9,10 @@ typedef struct {
char *color; /* if starts with number, \003 is automatically
inserted before it. */
- int nick:1; /* hilight only the nick, not a full line - works only with msgs. */
- int nickmask:1; /* `text 'is a nick mask - colorify the nick */
- int fullword:1; /* match `text' only for full words */
- int regexp:1; /* `text' is a regular expression */
+ unsigned int nick:1; /* hilight only the nick, not a full line - works only with msgs. */
+ unsigned int nickmask:1; /* `text 'is a nick mask - colorify the nick */
+ unsigned int fullword:1; /* match `text' only for full words */
+ unsigned int regexp:1; /* `text' is a regular expression */
} HILIGHT_REC;
extern GSList *hilights;