Skip to content

Commit

Permalink
Fix warning from some versions of GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Apr 9, 2012
1 parent 0f9c585 commit 1cbbd27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rt/jit.c
Expand Up @@ -143,7 +143,7 @@ static time_t jit_mod_time(const char *path)
if (errno == ENOENT) if (errno == ENOENT)
return 0; return 0;
else else
fatal_errno(path); fatal_errno("%s", path);
} }
return st.st_mtime; return st.st_mtime;
} }
Expand Down

0 comments on commit 1cbbd27

Please sign in to comment.