Skip to content

Commit

Permalink
Another signedness to fix
Browse files Browse the repository at this point in the history
With -Wformat-signedness GCC warning.
  • Loading branch information
Julien-Elie committed Feb 11, 2024
1 parent 7780a66 commit de86086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/ninpaths.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ readdump(FILE *f)
#ifdef DEBUG
{
time_t st_time = st;
fprintf(stderr, " dumped start %s total=%ld atimes=%ld (%ld)\n",
fprintf(stderr, " dumped start %s total=%ld atimes=%lu (%lu)\n",
ctime(&st_time), tot, at, at - st);
}
#endif
Expand Down

0 comments on commit de86086

Please sign in to comment.