From fad6f48152b1663ad74f185fda4c58dc2b0fa5c5 Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Thu, 27 Feb 2020 15:13:05 +0100 Subject: [PATCH] print: indent code lines less (1 space instead of 2) --- lib/passes/print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/passes/print.cpp b/lib/passes/print.cpp index 3e5138b..8e28788 100644 --- a/lib/passes/print.cpp +++ b/lib/passes/print.cpp @@ -55,7 +55,7 @@ void PrintPass::analyze(uint32_t pc, ConcreteInstruction &ci) if(i.args.size()) mnemonic += std::string(8 - mnemonic.size(), ' '); - printf(" %08x: %04x %s", pc, ci.inst.opcode, mnemonic.c_str()); + printf(" %08x: %04x %s", pc, ci.inst.opcode, mnemonic.c_str()); /* Arguments */