From 3ef308120cec26dd148a3285d33bbc77c569aa83 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 11 Feb 2021 22:37:12 +0100 Subject: [PATCH] fix signedness --- client/src/cmdhfmfu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmfu.c b/client/src/cmdhfmfu.c index 68e91fb26..d975e8cb6 100644 --- a/client/src/cmdhfmfu.c +++ b/client/src/cmdhfmfu.c @@ -3558,7 +3558,7 @@ static int CmdHF14MfuNDEF(const char *Cmd) { status = NDEFDecodeAndPrint(records, (size_t)maxsize, true); } - char *jooki = strstr(records, "s.jooki.rocks/s/?s="); + char *jooki = strstr((char*)records, "s.jooki.rocks/s/?s="); if (jooki) { jooki += 17; while(jooki) {