[Kernel] Fixed xex2_version

This commit is contained in:
Adrian
2025-04-15 12:15:46 +01:00
committed by Radosław Gliński
parent 31d715d100
commit bde7d5579a
2 changed files with 6 additions and 16 deletions

View File

@@ -375,10 +375,10 @@ struct xex2_opt_file_format_info {
union xex2_version {
uint32_t value;
struct {
uint32_t major : 4;
uint32_t minor : 4;
uint32_t build : 16;
uint32_t qfe : 8;
uint32_t build : 16;
uint32_t minor : 4;
uint32_t major : 4;
};
};