diff options
| author | Masaki Muranaka <[email protected]> | 2012-10-22 10:52:24 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2012-10-22 11:08:06 +0900 |
| commit | 2ab40b4dccb0be468d1ee7e5e8e1b0e294e3826d (patch) | |
| tree | 487c7f58acd6c60edc11eef9e2290d4034258839 | |
| parent | 0debca9bdf7d1436fb4fa86f4b36bf940892c1a2 (diff) | |
| download | mruby-2ab40b4dccb0be468d1ee7e5e8e1b0e294e3826d.tar.gz mruby-2ab40b4dccb0be468d1ee7e5e8e1b0e294e3826d.zip | |
Fix prototype/declaration mismatch in uint8_dump().
| -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; |
