From ff8e282ea5df04ba9aeec52659ab64d0fc3bfbf6 Mon Sep 17 00:00:00 2001 From: kkent030315 Date: Sat, 26 Oct 2024 23:12:53 +0900 Subject: [PATCH] Fix doc comment for dos program --- src/pe/header.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pe/header.rs b/src/pe/header.rs index ddfaab31..f2129c47 100644 --- a/src/pe/header.rs +++ b/src/pe/header.rs @@ -436,7 +436,7 @@ impl<'a> Default for DosStub<'a> { 0x64, 0x65, 0x2E, // "DE." Continuation of the ASCII string, ending with a period. 0x0D, 0x0D, 0x0A, // Carriage return (CR `0x0D, 0x0D`) and line feed (LF `0x0A`) 0x24, // '$' (End of string marker for DOS function 09h) - 0x00, 0x00, 0x00, 0x00, // Null terminators or padding bytes for alignment + 0x00, 0x00, 0x00, 0x00, // Padding bytes (8-byte alignment) 0x00, 0x00, 0x00, // Padding bytes (8-byte alignment) ], }