patterns/zstd: Fixed block_header_t bitfield

This commit is contained in:
Nik
2023-03-26 11:09:26 +02:00
committed by GitHub
parent adf7256c39
commit 56d6f0187f
2 changed files with 3 additions and 3 deletions

View File

@@ -64,10 +64,10 @@ struct frame_header_t {
};
bitfield block_header_t {
block_size : 21;
block_type : 2;
last_block : 1;
} [[left_to_right]];
block_type : 2;
block_size : 21;
} [[right_to_left]];
enum block_type : u8 {
raw_block = 0,

Binary file not shown.