Эх сурвалжийг харах

Change remaining `repr(packed)` to `repr(C, packed)`. (#42)

Jiří Zárevúcky 7 жил өмнө
parent
commit
1963a45b95

+ 1 - 1
src/boot_loader_name.rs

@@ -1,6 +1,6 @@
 
 #[derive(Debug)]
-#[repr(packed)] // repr(C) would add unwanted padding before first_section
+#[repr(C, packed)] // only repr(C) would add unwanted padding before first_section
 pub struct BootLoaderNameTag {
     typ: u32,
     size: u32,

+ 1 - 1
src/command_line.rs

@@ -1,6 +1,6 @@
 
 #[derive(Debug)]
-#[repr(packed)] // repr(C) would add unwanted padding before first_section
+#[repr(C, packed)] // only repr(C) would add unwanted padding before first_section
 pub struct CommandLineTag {
     typ: u32,
     size: u32,