Commit 7848941a authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

msvcrt: Use unsigned types for bitfields.

parent 1913d265
......@@ -109,9 +109,9 @@ typedef struct {
unsigned char wxflag;
char textmode;
char lookahead[3];
char unicode : 1;
char utf8translations : 1;
char dbcsBufferUsed : 1;
unsigned int unicode : 1;
unsigned int utf8translations : 1;
unsigned int dbcsBufferUsed : 1;
char dbcsBuffer[MB_LEN_MAX];
} ioinfo;
......
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