From 80b70a37f47c5498c7150b297c359c8590eac97a Mon Sep 17 00:00:00 2001 From: suut Date: Tue, 5 May 2026 18:27:53 +0200 Subject: [PATCH] remove unused variable to make compiler happy --- client/src/cmdhfmfdes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmfdes.c b/client/src/cmdhfmfdes.c index 68ff857d1..3cf1ec2cc 100644 --- a/client/src/cmdhfmfdes.c +++ b/client/src/cmdhfmfdes.c @@ -6425,7 +6425,7 @@ static int parse_mfc_blocks(const char *in, uint8_t blocks_out[], size_t *blocks uint64_t seen_so_far = 0; bool has_data = false; bool has_trailer = false; - for (int i = 0;; i++) { + for (;;) { token = strtok_r(ptr, ",", &saveptr); ptr = NULL;