Fix #10852 compiler warnings.

This commit is contained in:
Richard Heck 2017-12-15 23:28:33 -05:00
parent 27eb415d25
commit 1182e303b1

View File

@ -168,16 +168,16 @@ protected:
fprintf(stderr, "\nStopped at: 0x%04x\n", c); fprintf(stderr, "\nStopped at: 0x%04x\n", c);
fputs("Unconverted input:", stderr); fputs("Unconverted input:", stderr);
for (intern_type const * i = from_next + 1; i < from_end; ++i) { for (intern_type const * i = from_next + 1; i < from_end; ++i) {
unsigned int const c = *i; unsigned int const cc = *i;
fprintf(stderr, " 0x%04x", c); fprintf(stderr, " 0x%04x", cc);
} }
fputs("\nConverted output:", stderr); fputs("\nConverted output:", stderr);
for (extern_type const * i = to; i < to_next; ++i) { for (extern_type const * i = to; i < to_next; ++i) {
// extern_type may be signed, avoid output of // extern_type may be signed, avoid output of
// something like 0xffffffc2 // something like 0xffffffc2
unsigned int const c = unsigned int const cc =
*reinterpret_cast<unsigned char const *>(i); *reinterpret_cast<unsigned char const *>(i);
fprintf(stderr, " 0x%02x", c); fprintf(stderr, " 0x%02x", cc);
} }
fputc('\n', stderr); fputc('\n', stderr);
fflush(stderr); fflush(stderr);
@ -222,14 +222,14 @@ protected:
fprintf(stderr, "\nStopped at: 0x%02x\n", c); fprintf(stderr, "\nStopped at: 0x%02x\n", c);
fputs("Unconverted input:", stderr); fputs("Unconverted input:", stderr);
for (extern_type const * i = from_next + 1; i < from_end; ++i) { for (extern_type const * i = from_next + 1; i < from_end; ++i) {
unsigned int const c = unsigned int const cc =
*reinterpret_cast<unsigned char const *>(i); *reinterpret_cast<unsigned char const *>(i);
fprintf(stderr, " 0x%02x", c); fprintf(stderr, " 0x%02x", cc);
} }
fputs("\nConverted output:", stderr); fputs("\nConverted output:", stderr);
for (intern_type const * i = to; i < to_next; ++i) { for (intern_type const * i = to; i < to_next; ++i) {
unsigned int const c = *i; unsigned int const cc = *i;
fprintf(stderr, " 0x%02x", c); fprintf(stderr, " 0x%02x", cc);
} }
fputc('\n', stderr); fputc('\n', stderr);
fflush(stderr); fflush(stderr);