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") {
|
} else if (key == "SW_CRC") {
|
||||||
_hdr["crc"] = value;
|
_hdr["crc"] = value;
|
||||||
} else {
|
} else {
|
||||||
printError("Unknown key " + key);
|
printWarn("Unknown key " + key);
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue