mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 11:17:54 +00:00
[common] debug: fix compilation on windows
This commit is contained in:
parent
6104956a27
commit
4b4e07875d
1 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue