Commit 7c91bb87 authored by Richard Henderson's avatar Richard Henderson

[ALPHA] Fix signed one bit fields.

parent 3b59e614
...@@ -55,9 +55,9 @@ ...@@ -55,9 +55,9 @@
*/ */
struct el_common { struct el_common {
unsigned int size; /* size in bytes of logout area */ unsigned int size; /* size in bytes of logout area */
int sbz1 : 30; /* should be zero */ unsigned int sbz1 : 30; /* should be zero */
int err2 : 1; /* second error */ unsigned int err2 : 1; /* second error */
int retry : 1; /* retry flag */ unsigned int retry : 1; /* retry flag */
unsigned int proc_offset; /* processor-specific offset */ unsigned int proc_offset; /* processor-specific offset */
unsigned int sys_offset; /* system-specific offset */ unsigned int sys_offset; /* system-specific offset */
unsigned int code; /* machine check code */ unsigned int code; /* machine check code */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment