Skip to content

Commit

Permalink
issue #169 Fix builds failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Aug 28, 2020
1 parent 90f5498 commit e20df09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ravi_mirjit.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ MIR_module_t mir_compile_C_module(
MIR_module_t module = NULL;
c2mir_init(ctx);
options->module_num++;
snprintf(module_name, sizeof module_name, "__mod_%d__", options->module_num);
snprintf(module_name, sizeof module_name, "__mod_%lld__", options->module_num);
options->message_file = stderr;
if (!c2mir_compile(ctx, options, t_getc, &read_buffer, module_name, NULL)) {
ret_code = 1;
Expand Down

0 comments on commit e20df09

Please sign in to comment.