Skip to main content
summaryrefslogtreecommitdiffstats
path: root/memory
diff options
context:
space:
mode:
authorMarc Dumais2016-03-31 17:29:59 +0000
committerMarc Dumais2016-03-31 17:33:49 +0000
commit4ab317096d8c46e1d6e64fe048f33a2a1a6eac40 (patch)
tree893a63f394f581add90c69980d14acf2eb6a4a93 /memory
parent750f009c20c4ed9703a12163bfe8dd0cc0166218 (diff)
downloadorg.eclipse.cdt-4ab317096d8c46e1d6e64fe048f33a2a1a6eac40.tar.gz
org.eclipse.cdt-4ab317096d8c46e1d6e64fe048f33a2a1a6eac40.tar.xz
org.eclipse.cdt-4ab317096d8c46e1d6e64fe048f33a2a1a6eac40.zip
Cosmetics
Change the output chunk size from 4 to 1 addressable unit, for the plain text memory exporter. Change-Id: Iaccebdf87e0d297754bc2dd12fc11f207476871a
Diffstat (limited to 'memory')
-rw-r--r--memory/org.eclipse.cdt.debug.ui.memory.transport/src/org/eclipse/cdt/debug/ui/memory/transport/PlainTextExporter.java2
1 files changed, 1 insertions, 1 deletions
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);

Back to the top