We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e56daa7 commit 70d92b2Copy full SHA for 70d92b2
multiboot2-header/src/header.rs
@@ -393,6 +393,10 @@ impl Debug for Multiboot2HeaderTagIter {
393
let entry = t as *const EntryEfi64HeaderTag;
394
let entry = &*(entry);
395
debug.entry(entry);
396
+ } else if typ == HeaderTagType::ModuleAlign {
397
+ let entry = t as *const ModuleAlignHeaderTag;
398
+ let entry = &*(entry);
399
+ debug.entry(entry);
400
} else if typ == HeaderTagType::Relocatable {
401
let entry = t as *const RelocatableHeaderTag;
402
0 commit comments