aboutsummaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-01-03 07:55:20 -0700
committerTom Tromey <tromey@adacore.com>2022-01-03 07:55:20 -0700
commit4d603089c82f9a4bd8cb48f909c155d449adef62 (patch)
tree33f2c56a8add7ba5dc3316223c1ddbda166891d9 /gdb/eval.c
parentb19f4f61785c8bf81b6a4a3dada9c446998aad35 (diff)
downloadgdb-4d603089c82f9a4bd8cb48f909c155d449adef62.zip
gdb-4d603089c82f9a4bd8cb48f909c155d449adef62.tar.gz
gdb-4d603089c82f9a4bd8cb48f909c155d449adef62.tar.bz2
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.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index 2d90abe..acac28e 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)