* dialog.h (struct Dlg_head): Changed the bit fields of length one

from signed int to unsigned int.
This commit is contained in:
Roland Illig 2005-08-15 20:30:55 +00:00
parent ae815922de
commit 32f6020a0f
2 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,8 @@
current byte is '\r'. current byte is '\r'.
* view.c (view_ccache_dump): Extended the output by the offset * view.c (view_ccache_dump): Extended the output by the offset
of the next line. of the next line.
* dialog.h (struct Dlg_head): Changed the bit fields of length one
from signed int to unsigned int.
2005-08-15 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz> 2005-08-15 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>

View File

@ -99,8 +99,8 @@ typedef struct Dlg_head {
int cols, lines; /* Width and height of the window */ int cols, lines; /* Width and height of the window */
/* Internal flags */ /* Internal flags */
int running:1; /* The dialog is currently active */ unsigned int running:1; /* The dialog is currently active */
int fullscreen:1; /* Parents dialogs don't need refresh */ unsigned int fullscreen:1; /* Parents dialogs don't need refresh */
int mouse_status; /* For the autorepeat status of the mouse */ int mouse_status; /* For the autorepeat status of the mouse */
/* Internal variables */ /* Internal variables */