From b878e59e2ef323b1cfabb98ece4213640353362a Mon Sep 17 00:00:00 2001 From: TheRogueArchivist <24215969+TheRogueArchivist@users.noreply.github.com> Date: Fri, 12 Jul 2024 09:08:50 -0600 Subject: [PATCH] Fix typo in PortableExecutable Printer (#11) --- SabreTools.Serialization/Printers/PortableExecutable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.Serialization/Printers/PortableExecutable.cs b/SabreTools.Serialization/Printers/PortableExecutable.cs index 3ea201c6..a21bcbb2 100644 --- a/SabreTools.Serialization/Printers/PortableExecutable.cs +++ b/SabreTools.Serialization/Printers/PortableExecutable.cs @@ -254,7 +254,7 @@ namespace SabreTools.Serialization.Printers } if (header.DelayImportDescriptor != null) { - builder.AppendLine(" Delay Import Descriptior (14)"); + builder.AppendLine(" Delay Import Descriptor (14)"); builder.AppendLine(header.DelayImportDescriptor.VirtualAddress, " Virtual address"); builder.AppendLine(header.DelayImportDescriptor.VirtualAddress.ConvertVirtualAddress(table), " Physical address"); builder.AppendLine(header.DelayImportDescriptor.Size, " Size");