remove perror

This commit is contained in:
Philippe Teuwen
2019-07-14 00:30:57 +02:00
parent 25e2ab9a4c
commit bb3c5e364e
3 changed files with 3 additions and 4 deletions

View File

@@ -24,7 +24,7 @@
#include "emv_pk.h"
#include "crypto.h"
#include "proxmark3.h"
#include "util.h"
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
@@ -398,7 +398,7 @@ static struct emv_pk *emv_pk_get_ca_pk_from_file(const char *fname,
FILE *f = fopen(fname, "r");
if (!f) {
perror("fopen");
PrintAndLogEx(ERR, "Error: can't open file %s.", fname);
return NULL;
}