Skip to content

Commit

Permalink
Fixed some compiler errors regarding PRId.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Mar 19, 2017
1 parent 0957492 commit cea6a16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mrbgems/mruby-proc-ext/src/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ mrb_proc_inspect(mrb_state *mrb, mrb_value self)
if (line != -1) {
char buf[32];

snprintf(buf, sizeof(buf), "%"MRB_PRId, line);
snprintf(buf, sizeof(buf), "%" PRId32, line);
mrb_str_cat_cstr(mrb, str, buf);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion src/error.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cea6a16

Please sign in to comment.