Repair MS compiler warning about signed-vs-unsigned mismatch. The plane

and width clearly don't need to be signed.
This commit is contained in:
Tim Peters 2004-07-18 04:34:33 +00:00
parent cc8f997543
commit 91380d5f28

View file

@ -108,8 +108,8 @@ typedef DBCHAR (*iso2022_encode_func)(const ucs4_t *data, int *length);
struct iso2022_designation {
unsigned char mark;
char plane;
char width;
unsigned char plane;
unsigned char width;
iso2022_init_func initializer;
iso2022_decode_func decoder;
iso2022_encode_func encoder;