Fix warning

This commit is contained in:
2023-02-02 01:14:29 -06:00
parent 40325fd5f7
commit ab22567f65
+1
View File
@@ -12,5 +12,6 @@ message_validate(const union Message* message) {
if(message->header.crc != crc16(message, length - sizeof(struct Footer)))
return MESSAGEERR_FOOTERCRC;
return MESSAGEERR_NONE;
}