From 9c74a96c9b8f66cbbf6f34b7263c0c75071c78e5 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 9 Apr 2019 21:40:25 +0200 Subject: [PATCH] unused --- client/loclass/cipherutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/loclass/cipherutils.c b/client/loclass/cipherutils.c index 9e7a23bac..d48863f98 100644 --- a/client/loclass/cipherutils.c +++ b/client/loclass/cipherutils.c @@ -150,7 +150,7 @@ void printarr(char *name, uint8_t *arr, int len) { for (i = 0; i < len; i++) { cx += snprintf(output + cx, outsize - cx, "0x%02x,", *(arr + i)); //5 bytes per byte } - cx += snprintf(output + cx, outsize - cx, "};"); + snprintf(output + cx, outsize - cx, "};"); PrintAndLogDevice(NORMAL, output); free(output); }