Usage of EXIT_SUCCESS/FAILURE instead of hard-coded values

This commit is contained in:
Luis Díaz Más
2022-03-22 15:36:29 +01:00
parent 5b0418d136
commit c5c315b6e7
32 changed files with 224 additions and 216 deletions
+1 -1
View File
@@ -114,5 +114,5 @@ int main(int argc, char** const argv) {
Params params;
params.getopt(argc, argv);
return 0;
return EXIT_SUCCESS;
}