From 4d603089c82f9a4bd8cb48f909c155d449adef62 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 3 Jan 2022 07:55:20 -0700 Subject: [PATCH] Small indentation fix in eval.c 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/eval.c b/gdb/eval.c index 2d90abecffe..acac28e5c2d 100644 --- a/gdb/eval.c +++ b/gdb/eval.c @@ -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) -- 2.30.2