Commit add88845 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 46f64142
......@@ -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;
......
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