summaryrefslogtreecommitdiff
path: root/Source/Core/Common/TimeUtil.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2025-06-08 04:04:37 +0100
committerGitHub <noreply@github.com>2025-06-08 04:04:37 +0100
commit19fbbf0dba32ad98fe791804cfd464ced91464f5 (patch)
tree24fd224e2185a3c77c57fb50f8af63ce0df21493 /Source/Core/Common/TimeUtil.cpp
parent1786e34bd34db61b910064741294e87bfb4d3e91 (diff)
parent4b65cc9a4c51af4308f748b3e7bf25d80db83860 (diff)
Merge pull request #13727 from JoshuaVandaele/fmt-11.2.0-localtime-deprec
fmt: Replace deprecated `fmt::localtime` usage with `Common::LocalTime`
Diffstat (limited to 'Source/Core/Common/TimeUtil.cpp')
-rw-r--r--Source/Core/Common/TimeUtil.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/Core/Common/TimeUtil.cpp b/Source/Core/Common/TimeUtil.cpp
index 39d989fb3f..93327e9136 100644
--- a/Source/Core/Common/TimeUtil.cpp
+++ b/Source/Core/Common/TimeUtil.cpp
@@ -2,23 +2,25 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include "Common/TimeUtil.h"
+#include "Common/Logging/Log.h"
#include <ctime>
#include <optional>
namespace Common
{
-std::optional<std::tm> Localtime(std::time_t time)
+std::optional<std::tm> LocalTime(std::time_t time)
{
std::tm local_time;
#ifdef _MSC_VER
if (localtime_s(&local_time, &time) != 0)
- return std::nullopt;
#else
- std::tm* result = localtime_r(&time, &local_time);
- if (result != &local_time)
- return std::nullopt;
+ if (localtime_r(&time, &local_time) == NULL)
#endif
+ {
+ ERROR_LOG_FMT(COMMON, "Failed to convert time to local time: {}", std::strerror(errno));
+ return std::nullopt;
+ }
return local_time;
}
} // Namespace Common