bitparser: Relax unknown header keys to a warning.
This commit is contained in:
parent
212a025de8
commit
6520946400
|
|
@ -112,8 +112,7 @@ int BitParser::parseHeader()
|
|||
} else if (key == "SW_CRC") {
|
||||
_hdr["crc"] = value;
|
||||
} else {
|
||||
printError("Unknown key " + key);
|
||||
return -1;
|
||||
printWarn("Unknown key " + key);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue