1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

use correct u8 type

This commit is contained in:
rjkm 2021-08-07 22:30:01 +02:00
parent 66b1cf3623
commit 37ae102d57

View File

@ -770,10 +770,10 @@ struct mci_result {
} ISDBS_TMCCInfo; } ISDBS_TMCCInfo;
struct { struct {
uint8_t cut; u8 cut;
uint8_t avs_code; u8 avs_code;
uint8_t temperature; u8 temperature;
uint8_t rsvd[13]; u8 rsvd[13];
} sx8_bist; } sx8_bist;
}; };
u32 version[3]; u32 version[3];