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)
committerJoel Brobecker <brobecker@adacore.com>
Wed, 15 Jan 2014 12:32:05 +0000 (16:32 +0400)
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 6ca36558418670ef07bfb31da220c94a6d8a068d..5702257982b4d364c69f77d03bbc318dc67f7ebc 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-14  Doug Evans  <dje@google.com>
 
        * symfile.h (expand_symtabs_matching): Renamed from
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));
This page took 0.034772 seconds and 4 git commands to generate.