Small indentation fix in eval.c
authorTom Tromey <tromey@adacore.com>
Mon, 3 Jan 2022 14:55:20 +0000 (07:55 -0700)
committerTom Tromey <tromey@adacore.com>
Mon, 3 Jan 2022 14:55:20 +0000 (07:55 -0700)
I noticed that the AdaCore tree had a small divergence in eval.c -- it
had a fix for an indentation problem in binop_promote.  I'm checking
in this small fix as obvious.

gdb/eval.c

index 2d90abecffed7cd6a9bfe6702f1eb21d89c92ca1..acac28e5c2d68fc72d317e3235cbfad65b8193ba 100644 (file)
@@ -281,7 +281,7 @@ binop_promote (const struct language_defn *language, struct gdbarch *gdbarch,
     return;
 
   if (is_fixed_point_type (type1) || is_fixed_point_type (type2))
-        return;
+    return;
 
   if (type1->code () == TYPE_CODE_DECFLOAT
       || type2->code () == TYPE_CODE_DECFLOAT)