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 18e34d9 commit 80c2137Copy full SHA for 80c2137
multiboot2-header/src/header.rs
@@ -397,6 +397,10 @@ impl Debug for Multiboot2HeaderTagIter {
397
let entry = t as *const EntryEfi64HeaderTag;
398
let entry = &*(entry);
399
debug.entry(entry);
400
+ } else if typ == HeaderTagType::ModuleAlign {
401
+ let entry = t as *const ModuleAlignHeaderTag;
402
+ let entry = &*(entry);
403
+ debug.entry(entry);
404
} else if typ == HeaderTagType::Relocatable {
405
let entry = t as *const RelocatableHeaderTag;
406
0 commit comments