mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-02 02:53:09 +08:00
fix signedness
This commit is contained in:
parent
05e85cbbe2
commit
3ef308120c
1 changed files with 1 additions and 1 deletions
|
@ -3558,7 +3558,7 @@ static int CmdHF14MfuNDEF(const char *Cmd) {
|
||||||
status = NDEFDecodeAndPrint(records, (size_t)maxsize, true);
|
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) {
|
if (jooki) {
|
||||||
jooki += 17;
|
jooki += 17;
|
||||||
while(jooki) {
|
while(jooki) {
|
||||||
|
|
Loading…
Reference in a new issue