fw: Fix erroneous type in frame header

This commit is contained in:
Daniel Jobson 2024-10-09 15:32:51 +02:00
parent 0ea0eeb967
commit f13366538e
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
2 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ enum status {
struct frame_header {
uint8_t id;
enum endpoints endpoint;
enum cmdlen len;
size_t len;
};
/*@ -exportlocal @*/