fix windows

This commit is contained in:
2025-09-27 11:58:49 -05:00
parent d06ac9f2c3
commit e44a42f445

View File

@@ -210,8 +210,7 @@ auto get_times(std::string_view path) -> std::optional<file_times> {
ret.accessed =
utils::time::windows_file_time_to_unix_time(times.at(1U));
ret.changed = utils::time::windows_file_time_to_unix_time(times.at(2U));
ret.created = =
utils::time::windows_file_time_to_unix_time(times.at(0U));
ret.created = utils::time::windows_file_time_to_unix_time(times.at(0U));
ret.modified =
utils::time::windows_file_time_to_unix_time(times.at(2U));
ret.written = utils::time::windows_file_time_to_unix_time(times.at(2U));