Fixes for CLang-specific warnings.

This commit is contained in:
OBattler
2025-08-24 01:11:54 +02:00
parent d7a714185c
commit 9a7d63650b
5 changed files with 8 additions and 8 deletions

View File

@@ -1082,6 +1082,8 @@ usage:
#ifdef _WIN32
if (localtime_s(&time_buf, &now) == 0)
info = &time_buf;
else
info = NULL;
#else
info = localtime_r(&now, &time_buf);
#endif