Skip to content

Commit

Permalink
Fix doc comment for dos program
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Oct 26, 2024
1 parent d22797c commit ff8e282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pe/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
],
}
Expand Down

0 comments on commit ff8e282

Please sign in to comment.