Don't call abort on usage errors; print out the usage message instead

PR: 196793
MFC after: 3 days
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
ngie 2015-01-16 21:12:36 +00:00
parent 2b7d8bc28a
commit 96da0c1c63

View File

@ -565,8 +565,9 @@ int main(int argc, char *argv[])
printf("Done with args\n"); printf("Done with args\n");
break; break;
default: /* something wrong */ default:
abort(); show_usage();
return 1;
} }
} }