Skip to content

Commit

Permalink
Add missing line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Apr 24, 2024
1 parent 9c1afc2 commit 7e91e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions far/exception_handler.cpp
Expand Up @@ -393,15 +393,15 @@ static void read_modules(std::span<HMODULE const> const Modules, string& To, str

if (!os::fs::get_module_file_name({}, i, Name))
{
append(To, ColumnSeparator, os::last_error().to_string());
append(To, ColumnSeparator, os::last_error().to_string(), Eol);
continue;
}

append(To, ColumnSeparator, Name);

if (!FileVersion.read(Name))
{
append(To, ColumnSeparator, os::last_error().Win32ErrorStr());
append(To, ColumnSeparator, os::last_error().Win32ErrorStr(), Eol);
continue;
}

Expand Down

0 comments on commit 7e91e54

Please sign in to comment.