Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openzim/zim-tools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e6100ab9cc1ecec478bebcb1734a73e9f5d781b0
Choose a base ref
..
head repository: openzim/zim-tools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d1bc892021133b3a36bf29a6dcecd49efa58993
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/zimrecreate.cpp
4 changes: 2 additions & 2 deletions src/zimrecreate.cpp
Original file line number Diff line number Diff line change
@@ -177,11 +177,11 @@ void usage()
"\nOptions:\n"
"\t-v, --version print software version\n"
"\t-j, --withoutFTIndex don't create and add a fulltext index of the content to the ZIM\n"
"\t-J, --threads <number> count of threads to utilize (default: 4)\n";
"\t-J, --threads <number> count of threads to utilize (default: 4)\n"
"\nReturn value:\n"
"- 0 if no error\n"
"- -1 if arguments are not valid\n"
"- -2 if zim creation fails\n"
"- -2 if zim creation fails\n";

Check warning on line 184 in src/zimrecreate.cpp

Codecov / codecov/patch

src/zimrecreate.cpp#L184

Added line #L184 was not covered by tests
return;
}