[PATCH] disas: Fix tabs and braces in disas.c

Richard Henderson posted 1 patch 1 year ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230510170812.663149-1-richard.henderson@linaro.org
disas.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
[PATCH] disas: Fix tabs and braces in disas.c
Posted by Richard Henderson 1 year ago
Fix these before moving the file, for checkpatch.pl.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 disas.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/disas.c b/disas.c
index b087c12c47..d46f638a72 100644
--- a/disas.c
+++ b/disas.c
@@ -226,11 +226,12 @@ void target_disas(FILE *out, CPUState *cpu, target_ulong code,
     }
 
     for (pc = code; size > 0; pc += count, size -= count) {
-	fprintf(out, "0x" TARGET_FMT_lx ":  ", pc);
-	count = s.info.print_insn(pc, &s.info);
-	fprintf(out, "\n");
-	if (count < 0)
-	    break;
+        fprintf(out, "0x" TARGET_FMT_lx ":  ", pc);
+        count = s.info.print_insn(pc, &s.info);
+        fprintf(out, "\n");
+        if (count < 0) {
+            break;
+        }
         if (size < count) {
             fprintf(out,
                     "Disassembler disagrees with translator over instruction "
-- 
2.34.1
Re: [PATCH] disas: Fix tabs and braces in disas.c
Posted by Peter Maydell 1 year ago
On Wed, 10 May 2023 at 18:09, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> Fix these before moving the file, for checkpatch.pl.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>  disas.c | 11 ++++++-----

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM