Skip to content

Commit

Permalink
refactor: Replace , with :
Browse files Browse the repository at this point in the history
As pointed out by review, using `,` is incositent with the rest of the messages, which all use `:`
  • Loading branch information
ENDERZOMBI102 authored Jan 20, 2024
1 parent 22936b6 commit d3c83db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/action_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ bool ActionConvert::process_file(
m_height = opts.get<int>(opts::height);

if (!std::filesystem::exists(srcFile)) {
std::cerr << "Could not open " << srcFile << ", file does not exist\n";
std::cerr << "Could not open " << srcFile << ": file does not exist\n";
return false;
}

Expand Down

0 comments on commit d3c83db

Please sign in to comment.