gids-tool: Remove empty condition

Empty block without comment

Thanks lgtm
This commit is contained in:
Jakub Jelen 2020-03-03 11:14:25 +01:00 committed by Frank Morgner
parent e429fe03c5
commit 88dce12181
1 changed files with 1 additions and 2 deletions

View File

@ -115,8 +115,7 @@ static int initialize(sc_card_t *card, const char *so_pin, const char *user_pin,
return -1;
}
if (len == 0) {
} else if (len != 24) {
if (len != 24) {
fprintf(stderr, "The admin key must be a hexadecimal string of 48 characters\n");
return -1;
}