]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Add missing empty line after declarations in "if" block (py-type.c).
authorJoel Brobecker <brobecker@adacore.com>
Wed, 15 Jan 2014 12:28:08 +0000 (16:28 +0400)
committerSiva Chandra <sivachandra@chromium.org>
Wed, 15 Jan 2014 13:03:57 +0000 (05:03 -0800)
This patch fixes a small coding-style violation...

gdb/ChangeLog:

        * python/py-type.c (convert_field): Add missing empty line
        after declarations.

gdb/ChangeLog
gdb/python/py-type.c

index 34bd1808f9c1079b3cb9e25bbaccc2c2beba4a76..52108d4d7ec585d988292d84844adc10512e529a 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-15  Joel Brobecker  <brobecker@adacore.com>
+
+       * python/py-type.c (convert_field): Add missing empty line
+       after declarations.
+
 2014-01-13  Siva Chandra Reddy  <sivachandra@google.com>
 
        PR python/15464
index c904d3af3fee0efc182db95ee3bef86bea412897..26d01185c399a1977db1963398e6638c1d8d8008 100644 (file)
@@ -210,6 +210,7 @@ convert_field (struct type *type, int field)
   if (TYPE_FIELD_NAME (type, field))
     {
       const char *field_name = TYPE_FIELD_NAME (type, field);
+
       if (field_name[0] != '\0')
        {
          arg = PyString_FromString (TYPE_FIELD_NAME (type, field));