Fix bug with 3 arguments
This commit is contained in:
parent
f3be53050e
commit
8dfa56709b
2
main.cpp
2
main.cpp
|
@ -117,7 +117,7 @@ static std::tuple<int, int, std::string> parseInput(int argc, char **argv)
|
||||||
if (splitting < 1)
|
if (splitting < 1)
|
||||||
return error(output::SPLITTING_MSG);
|
return error(output::SPLITTING_MSG);
|
||||||
|
|
||||||
const auto &[ret_code, ret_path] = parsePath(argv[3]);
|
const auto &[ret_code, ret_path] = parsePath(argc == MAX_ARGC ? argv[3] : DEFAULT_PATH);
|
||||||
|
|
||||||
if (ret_code)
|
if (ret_code)
|
||||||
return error(output::IMG_FAIL_MSG);
|
return error(output::IMG_FAIL_MSG);
|
||||||
|
|
Loading…
Reference in New Issue