Commit 91380d5f authored by Tim Peters's avatar Tim Peters

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

and width clearly don't need to be signed.
parent cc8f9975
...@@ -108,8 +108,8 @@ typedef DBCHAR (*iso2022_encode_func)(const ucs4_t *data, int *length); ...@@ -108,8 +108,8 @@ typedef DBCHAR (*iso2022_encode_func)(const ucs4_t *data, int *length);
struct iso2022_designation { struct iso2022_designation {
unsigned char mark; unsigned char mark;
char plane; unsigned char plane;
char width; unsigned char width;
iso2022_init_func initializer; iso2022_init_func initializer;
iso2022_decode_func decoder; iso2022_decode_func decoder;
iso2022_encode_func encoder; iso2022_encode_func encoder;
......
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