diff options
Diffstat (limited to 'disassembler/dmbuffer.c')
-rw-r--r-- | disassembler/dmbuffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/disassembler/dmbuffer.c b/disassembler/dmbuffer.c index f223f89f4319..b8d65a324711 100644 --- a/disassembler/dmbuffer.c +++ b/disassembler/dmbuffer.c @@ -108,19 +108,19 @@ AcpiDmDisasmByteList ( } AcpiDmIndent (Level); - if (ByteCount > 7) + if (ByteCount > 8) { - AcpiOsPrintf ("/* %04X */ ", i); + AcpiOsPrintf ("/* %04X */ ", i); } } - AcpiOsPrintf ("0x%2.2X", (UINT32) ByteData[i]); + AcpiOsPrintf (" 0x%2.2X", (UINT32) ByteData[i]); /* Add comma if there are more bytes to display */ if (i < (ByteCount -1)) { - AcpiOsPrintf (", "); + AcpiOsPrintf (","); } } |