[ox/claw] Fix typo in error msg

This commit is contained in:
Gary Talent 2022-02-17 03:31:05 -06:00
parent 0c6e47e0b3
commit 3389656ecf

View File

@ -45,7 +45,7 @@ Error readClaw(const char *buff, std::size_t buffLen, T *val) {
return OxError(Error_ClawTypeMismatch, "Claw Read: Type mismatch");
}
if (header.typeVersion != getModelTypeVersion<T>()) {
return OxError(Error_ClawTypeVersionMismatch, "Claw Read: Type Verion mismatch");
return OxError(Error_ClawTypeVersionMismatch, "Claw Read: Type Version mismatch");
}
switch (header.fmt) {
case ClawFormat::Metal: