Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Sep 23, 2024
1 parent 4d0b173 commit 9fb97bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ void dbg_init()
DWORD timestamp = util_get_timestamp(GetModuleHandleA(NULL));
if (timestamp)
{
struct tm* timeinfo = _gmtime32((const long*)&timestamp);
TRACE("timestamp = %s", asctime(timeinfo));
TRACE("timestamp = %s", asctime(_gmtime32((const long*)&timestamp)));
}
}
}
Expand Down

0 comments on commit 9fb97bf

Please sign in to comment.