Skip to content

Commit

Permalink
Compilable on WSL
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-topnotch committed Mar 18, 2024
1 parent 7fbccc0 commit 7b375f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ std::tm minio::utils::UtcTime::auxLocaltime(const std::time_t& time) {
#ifdef _WIN32
localtime_s(&result, &time);
#else
localtime_r(&result, &time); //PWTODO
localtime_r(&time, &result);
#endif
return result;
}
Expand Down

0 comments on commit 7b375f5

Please sign in to comment.