debug.h: use `uint8_t` instead of `char` for BER compressed binary.

A change in `load.c` is left uncommitted.
parent b5039fdb
......@@ -363,7 +363,7 @@ read_debug_record(mrb_state *mrb, const uint8_t *start, mrb_irep* irep, size_t *
} break;
case mrb_debug_line_packed_map: {
file->lines.packed_map = (char*)mrb_calloc(mrb, 1, (size_t)file->line_entry_count);
file->lines.packed_map = (uint8_t*)mrb_calloc(mrb, 1, (size_t)file->line_entry_count);
memcpy(file->lines.packed_map, bin, file->line_entry_count);
bin += file->line_entry_count;
} break;
......
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