Building from source fails with the following error:
build/libcec/src/libcec/../../include/cectypes.h:872:39: error: expected '}' before ';' token
872 | CEC_VENDOR_TEUFEL = 0x232425;
| ^
This is due to a typo on this line:
|
CEC_VENDOR_TEUFEL = 0x232425; |
When the semicolon is changed to a comma, the build completes without errors.