Skip to content

Commit

Permalink
[common] debug: fix compilation on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gnif committed Dec 7, 2023
1 parent 6104956 commit 4b4e078
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions common/src/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ inline static void debug_levelVA(enum DebugLevel level, const char * file,
uint64_t sec = elapsed / 1000000UL;
uint64_t us = elapsed % 1000000UL;

fprintf(stderr, "%02lu:%02lu:%02lu.%03lu %s %18s:%-4u | %-30s | ",
sec / 60 / 60,
sec / 60 % 60,
sec % 60,
us / 1000,
fprintf(stderr, "%02u:%02u:%02u.%03u %s %18s:%-4u | %-30s | ",
(unsigned)(sec / 60 / 60),
(unsigned)(sec / 60 % 60),
(unsigned)(sec % 60),
(unsigned)(us / 1000),
debug_lookup[level],
f,
line, function);
Expand Down

0 comments on commit 4b4e078

Please sign in to comment.