diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-10-22 07:09:03 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-10-22 07:09:03 -0700 |
| commit | b8c94be107fa00f981d0e9259fab398ee4f7f4b4 (patch) | |
| tree | 35ac1b2fa402c8baa86dc19981033747baee34d4 /src/dump.c | |
| parent | 02f703701bc5a4be2673854f272680e9d3d8605b (diff) | |
| parent | 2ab40b4dccb0be468d1ee7e5e8e1b0e294e3826d (diff) | |
| download | mruby-b8c94be107fa00f981d0e9259fab398ee4f7f4b4.tar.gz mruby-b8c94be107fa00f981d0e9259fab398ee4f7f4b4.zip | |
Merge pull request #503 from monaka/pr-fix-protype-declaration-mismatch-in-uint8_dump
Fix prototype/declaration mismatch in uint8_dump().
Diffstat (limited to 'src/dump.c')
| -rw-r--r-- | src/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dump.c b/src/dump.c index c8f92ec72..4f672e188 100644 --- a/src/dump.c +++ b/src/dump.c @@ -76,7 +76,7 @@ static int mrb_write_irep(mrb_state*,int,char*); 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) { *hex = bin; |
