diff --git a/memory/org.eclipse.cdt.debug.ui.memory.transport/src/org/eclipse/cdt/debug/ui/memory/transport/PlainTextExporter.java b/memory/org.eclipse.cdt.debug.ui.memory.transport/src/org/eclipse/cdt/debug/ui/memory/transport/PlainTextExporter.java index 2c9c87f8f6d..fbdef001cb4 100644 --- a/memory/org.eclipse.cdt.debug.ui.memory.transport/src/org/eclipse/cdt/debug/ui/memory/transport/PlainTextExporter.java +++ b/memory/org.eclipse.cdt.debug.ui.memory.transport/src/org/eclipse/cdt/debug/ui/memory/transport/PlainTextExporter.java @@ -486,7 +486,7 @@ public class PlainTextExporter implements IMemoryExporter { // These variables control how the output will be formatted // The output data is split by chunks of 1 addressable unit size. - final BigInteger dataCellSize = BigInteger.valueOf(4); + final BigInteger dataCellSize = BigInteger.valueOf(1); // show 32 bytes of data per line, total. Adjust number of columns to compensate // for longer addressable unit size final BigInteger numberOfColumns = BigInteger.valueOf(32).divide(addressableSize);