added return EXIT_SUCCESS in main

This commit is contained in:
Andrei Medar 2020-08-13 15:46:21 +00:00
parent acbfec0cb5
commit 11ea152d3c
2 changed files with 2 additions and 1 deletions

View File

@ -11,4 +11,5 @@ TODO
- check if security policy can be stricter
- ~~use addDirectoryAt instead of addDirectory~~
- ~~modify tests assertions~~
- add useful prints to unit tests

View File

@ -123,5 +123,5 @@ int main(int argc, char *argv[]) {
generate_one_step(images_path);
generate_two_steps(images_path);
return 0;
return EXIT_SUCCESS;
}