remove perror

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

View file

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

View file

@ -192,7 +192,6 @@ int flash_load(flash_file_t *ctx, const char *name, int can_write_bl) {
fd = fopen(name, "rb"); fd = fopen(name, "rb");
if (!fd) { if (!fd) {
PrintAndLogEx(ERR, _RED_("Could not open file") "%s >>> ", name); PrintAndLogEx(ERR, _RED_("Could not open file") "%s >>> ", name);
perror(NULL);
goto fail; goto fail;
} }

View file

@ -238,7 +238,7 @@ void uart_close(const serial_port sp) {
// Does the system allows us to place a lock on this file descriptor // Does the system allows us to place a lock on this file descriptor
int err = fcntl(spu->fd, F_SETLK, &fl); int err = fcntl(spu->fd, F_SETLK, &fl);
if (err == -1) { if (err == -1) {
//perror("fcntl"); printf("[!] UART error while closing port\n");
} }
close(spu->fd); close(spu->fd);
free(sp); free(sp);