nfc-mfultralight: Show help when no arguments are supplied

For some reason, 0cece94778 changed the argc count check to only show
the help if argc is 0. Obviously, argc is never zero, as the first
argument in argv is always the binary itself. Revert that and show usage
if there is no arguments supplied to the binary.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
This commit is contained in:
Olliver Schinagl 2016-05-11 09:13:31 +02:00
parent e1a25a8203
commit 7b1ff70a52

View file

@ -332,7 +332,7 @@ main(int argc, const char *argv[])
bool bUID = false;
FILE *pfDump;
if (argc == 0) {
if (argc < 2) {
print_usage(argv);
exit(EXIT_FAILURE);
}