Skip to content
Snippets Groups Projects
Commit d46a4062 authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : problem with argc checking

parent 7b7b432c
No related branches found
No related tags found
No related merge requests found
......@@ -55,12 +55,11 @@
int main(int argc, char * argv[])
{
if (argc < 5)
if (argc < 4)
{
std::cerr << "Usage: " << argv[0];
std::cerr << " inputImageFile outputDistanceMapImageFile ";
std::cerr << " outputVoronoiMapImageFilter ";
std::cerr << " outputVectorMapImageFilter ";
std::cerr << std::endl;
return EXIT_FAILURE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment