Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 628086013
  • Loading branch information
Googler authored and copybara-github committed Apr 25, 2024
1 parent 0c8cba7 commit 9480a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion krypton/desktop/windows/logging/file_logger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void FileLogger::ResetLoggerStates() {
}

// Get the size of the last (current) file.
std::ifstream in(sorted_paths_.back(),
std::ifstream in(sorted_paths_.back().c_str(),
std::ifstream::ate | std::ifstream::binary);
current_file_size_ = in.tellg();
in.close();
Expand Down

0 comments on commit 9480a01

Please sign in to comment.