Skip to content

Commit 82ec05c

Browse files
committed
Increment count at end of loop
The count variable isn't updated, which means there is never a line break after 20 iterations. This PR fixes this, as it was forgotten for some reason.
1 parent 56ca81c commit 82ec05c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Ghidra/Features/Decompiler/src/main/java/ghidra/app/decompiler/DecompileDebug.java

+1
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ private void dumpStringData(OutputStream debugStream) throws IOException {
318318
if (count % 20 == 19) {
319319
buf.append("\n ");
320320
}
321+
count++;
321322
}
322323
buf.append("00\n</bytes>\n");
323324
buf.append("</string>\n");

0 commit comments

Comments
 (0)