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 0e09ebc commit 7549238Copy full SHA for 7549238
2 files changed
src/LibObjectFile/Elf/ElfPrinter.cs
@@ -365,7 +365,7 @@ private static string GetElfNoteDescription(ElfNote note)
365
366
if (builder.Length == 0)
367
{
368
- builder.Append($"Unknown note type: (0x{note.GetNoteType().Value:x8})");
+ builder.Append($"Unknown note type: (0x{(uint)note.GetNoteType().Value:x8})");
369
}
370
371
builder.Append("\t\t");
src/LibObjectFile/Elf/Sections/ElfNoteType.cs
@@ -28,7 +28,7 @@ public ElfNoteTypeEx(ElfNoteType value)
28
29
public override string ToString()
30
31
- return ToStringInternal() ?? $"Unknown {nameof(ElfNoteTypeEx)} (0x{Value:X4})";
+ return ToStringInternal() ?? $"Unknown {nameof(ElfNoteTypeEx)} (0x{(uint)Value:X4})";
32
33
34
public bool Equals(ElfNoteTypeEx other)
0 commit comments