Skip to content

Commit

Permalink
[TUTO] Fix return value.
Browse files Browse the repository at this point in the history
  • Loading branch information
florent-lamiraux committed Oct 4, 2023
1 parent c607ae9 commit d16a72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/calibration/visp-compute-chessboard-poses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ int main(int argc, const char **argv)
if (!vpIoTools::checkFilename(opt_intrinsic_file)) {
std::cout << "Camera parameters file " << opt_intrinsic_file << " doesn't exist." << std::endl;
std::cout << "Use --help option to see how to set its location..." << std::endl;
return EXIT_SUCCESS;
return EXIT_FAILURE;
}

if (opt_input_img_files.empty()) {
Expand Down

0 comments on commit d16a72c

Please sign in to comment.