diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-03-19 23:42:49 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-03-19 23:42:49 +0900 |
| commit | cea6a16cf41b5268a0ad38d1c6ab3140e375f0f3 (patch) | |
| tree | 4ac99aa068a917e4597e74debca6675ef511d2d1 /src | |
| parent | 09574922a987aaa0813a4dfd37ac89ca60ca4281 (diff) | |
| download | mruby-cea6a16cf41b5268a0ad38d1c6ab3140e375f0f3.tar.gz mruby-cea6a16cf41b5268a0ad38d1c6ab3140e375f0f3.zip | |
Fixed some compiler errors regarding PRId.
Diffstat (limited to 'src')
| -rw-r--r-- | src/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.c b/src/error.c index 3ef57f895..2201fc840 100644 --- a/src/error.c +++ b/src/error.c @@ -152,7 +152,7 @@ exc_inspect(mrb_state *mrb, mrb_value exc) char buf[32]; str = mrb_str_dup(mrb, file); - snprintf(buf, sizeof(buf), ":%"MRB_PRId": ", mrb_fixnum(line)); + snprintf(buf, sizeof(buf), ":%" MRB_PRId ": ", mrb_fixnum(line)); mrb_str_cat_cstr(mrb, str, buf); if (append_mesg) { mrb_str_cat_str(mrb, str, mesg); |
