Skip to content

Commit

Permalink
fix 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Apr 11, 2023
1 parent 7e9dcc1 commit dd7e64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmt/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,5 @@ int fmt_timestamp(struct re_printf *pf, void *arg)
#endif
(void)arg;

return re_hprintf(pf, "%02u:%02u:%02u.%03lu", h, m, s, ms);
return re_hprintf(pf, "%02u:%02u:%02u.%03llu", h, m, s, ms);
}

0 comments on commit dd7e64c

Please sign in to comment.