From bf7105a442e58c3444b096f30fd59c5c8acfd362 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 15 Jan 2014 16:40:22 +0400 Subject: Fix small style violation in py-value.c:get_field_type gdb/ChangeLog: * python/py-value.c (get_field_type): Remove unnecessary curly braces for single-statement if block. Tested on x86_64-linux. --- gdb/python/py-value.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gdb/python/py-value.c') diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index 65750a4..67e6c4e 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -577,11 +577,9 @@ get_field_type (PyObject *field) ftype = type_object_to_type (ftype_obj); Py_DECREF (ftype_obj); if (ftype == NULL) - { - PyErr_SetString (PyExc_TypeError, - _("'type' attribute of gdb.Field object is not a " - "gdb.Type object.")); - } + PyErr_SetString (PyExc_TypeError, + _("'type' attribute of gdb.Field object is not a " + "gdb.Type object.")); return ftype; } -- cgit v1.1