bitparser: Relax unknown header keys to a warning.

This commit is contained in:
Vegard Storheil Eriksen 2026-04-20 21:01:24 +02:00
parent 212a025de8
commit 6520946400
1 changed files with 1 additions and 2 deletions

View File

@ -112,8 +112,7 @@ int BitParser::parseHeader()
} else if (key == "SW_CRC") { } else if (key == "SW_CRC") {
_hdr["crc"] = value; _hdr["crc"] = value;
} else { } else {
printError("Unknown key " + key); printWarn("Unknown key " + key);
return -1;
} }
} }
} }