mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
bit fields should be unsigned type always (unsigned int dirty:1).
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2602 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c726496953
commit
3800c07a32
@ -50,7 +50,7 @@ typedef struct {
|
|||||||
char *color; /* background color */
|
char *color; /* background color */
|
||||||
int real_ypos; /* real Y-position in screen at the moment */
|
int real_ypos; /* real Y-position in screen at the moment */
|
||||||
|
|
||||||
int dirty:1;
|
unsigned int dirty:1;
|
||||||
int dirty_xpos; /* -1 = only redraw some items, >= 0 = redraw all items after from xpos */
|
int dirty_xpos; /* -1 = only redraw some items, >= 0 = redraw all items after from xpos */
|
||||||
} STATUSBAR_REC;
|
} STATUSBAR_REC;
|
||||||
|
|
||||||
@ -74,7 +74,7 @@ struct SBAR_ITEM_REC {
|
|||||||
int xpos, size;
|
int xpos, size;
|
||||||
|
|
||||||
int current_size; /* item size currently in screen */
|
int current_size; /* item size currently in screen */
|
||||||
int dirty:1;
|
unsigned int dirty:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern GSList *statusbar_groups;
|
extern GSList *statusbar_groups;
|
||||||
|
Loading…
Reference in New Issue
Block a user