mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
PDB - adjust dump output lines on PdbDebugInfo
This commit is contained in:
parent
92ebc36382
commit
10702d0569
1 changed files with 6 additions and 6 deletions
|
@ -528,15 +528,15 @@ public abstract class PdbDebugInfo {
|
|||
* @throws IOException Upon IOException writing to the {@link Writer}.
|
||||
*/
|
||||
protected void dump(Writer writer) throws IOException {
|
||||
writer.write("DebugInfoHeader-------------------------------------\n");
|
||||
writer.write("DebugInfoHeader---------------------------------------------\n");
|
||||
dumpHeader(writer);
|
||||
writer.write("\nEnd DebugInfoHeader---------------------------------\n");
|
||||
writer.write("DebugInfoInternalSubstreams-------------------------\n");
|
||||
writer.write("\nEnd DebugInfoHeader-----------------------------------------\n");
|
||||
writer.write("DebugInfoInternalSubstreams---------------------------------\n");
|
||||
dumpInternalSubstreams(writer);
|
||||
writer.write("\nEnd DebugInfoInternalSubstreams---------------------\n");
|
||||
writer.write("DebugInfoAdditionalSubstreams-----------------------\n");
|
||||
writer.write("\nEnd DebugInfoInternalSubstreams-----------------------------\n");
|
||||
writer.write("DebugInfoAdditionalSubstreams-------------------------------\n");
|
||||
dumpAdditionalSubstreams(writer);
|
||||
writer.write("\nEnd DebugInfoAdditionalSubstreams-------------------\n");
|
||||
writer.write("\nEnd DebugInfoAdditionalSubstreams---------------------------\n");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue