Commit b8c94be1 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #503 from monaka/pr-fix-protype-declaration-mismatch-in-uint8_dump

Fix prototype/declaration mismatch in uint8_dump().
parents 02f70370 2ab40b4d
...@@ -76,7 +76,7 @@ static int mrb_write_irep(mrb_state*,int,char*); ...@@ -76,7 +76,7 @@ static int mrb_write_irep(mrb_state*,int,char*);
static inline int static inline int
uint8_dump(unsigned char bin, char *hex, int type) uint8_dump(uint8_t bin, char *hex, int type)
{ {
if (type == DUMP_TYPE_BIN) { if (type == DUMP_TYPE_BIN) {
*hex = bin; *hex = bin;
......
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