diff options
| author | Jordan Wiens <github@psifertex.com> | 2025-10-21 16:27:20 -0400 |
|---|---|---|
| committer | Jordan Wiens <github@psifertex.com> | 2025-10-21 17:33:25 -0400 |
| commit | 4eeabc6183a3ecf03c6bd2b345c9d0e766200371 (patch) | |
| tree | b297696136f83da367aec6a73f80b6ed2e58d9c6 /view | |
| parent | 89a0dff4fe21c42f86fa3d6bfc16dba2e2f51062 (diff) | |
fix pe section debug logging
Diffstat (limited to 'view')
| -rw-r--r-- | view/pe/peview.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/view/pe/peview.cpp b/view/pe/peview.cpp index 1272c9af..6872a61c 100644 --- a/view/pe/peview.cpp +++ b/view/pe/peview.cpp @@ -842,9 +842,10 @@ bool PEView::Init() "\tsection.pointerToLineNumbers: %lx\n" "\tsection.relocCount: %hx\n" "\tsection.lineNumberCount: %hx\n" - "\tsection.characteristics: %lx\n" - "\tsection.virtualSize: %lx\n", - i, section.name.c_str(), + "\tsection.characteristics: %lx\n", + i, + section.name.c_str(), + section.virtualSize, section.virtualAddress, section.sizeOfRawData, section.pointerToRawData, |
