Skip to content

Commit

Permalink
Code indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Mar 18, 2024
1 parent ad5ef8e commit c98dab9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/core/test/image/testImageDraw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ int main(int argc, char *argv[])
for (int i = 1; i < argc; i++) {
if (std::string(argv[i]) == "--save") {
save = true;
} else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
}
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0] << " [--save] [--help] [-h]\n" << std::endl;
return EXIT_SUCCESS;
}
Expand Down

0 comments on commit c98dab9

Please sign in to comment.