Return 0, not 1, when --help is passed.

Fixes #5329.


[SVN r70079]
This commit is contained in:
Vladimir Prus
2011-03-17 21:25:16 +00:00
parent 7051655c76
commit 9d7afca35c

View File

@@ -29,7 +29,7 @@ int main(int ac, char* av[])
if (vm.count("help")) {
cout << desc << "\n";
return 1;
return 0;
}
if (vm.count("compression")) {