From: Tom Tromey Date: Mon, 14 Apr 2003 04:42:21 +0000 (+0000) Subject: * gjavah.c (print_c_decl): Indentation fix. X-Git-Tag: releases/gcc-3.4.0~7316 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6311b9e257f778ddeb64e493eee5471cf7bf309;p=thirdparty%2Fgcc.git * gjavah.c (print_c_decl): Indentation fix. From-SVN: r65562 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 4ee59ee67266..342974960718 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2003-04-13 Tom Tromey + + * gjavah.c (print_c_decl): Indentation fix. + 2003-04-12 Zack Weinberg * class.c (make_field_value, make_method_value, get_dispatch_table) diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c index 51cfe7cffbc5..24c3933a05d0 100644 --- a/gcc/java/gjavah.c +++ b/gcc/java/gjavah.c @@ -1402,12 +1402,12 @@ print_c_decl (FILE* stream, JCF* jcf, int name_index, int signature_index, because the "new" C++ ABI changed the alignemnt of non-POD classes. gcj, however, still uses the "old" alignment. */ if (is_first_data_member && ! (flags & ACC_STATIC) && ! is_method) - { - is_first_data_member = 0; - print_cxx_classname (out, " __attribute__((aligned(__alignof__( ", - jcf, jcf->super_class, 1); - fputs (" )))) ", stream); - } + { + is_first_data_member = 0; + print_cxx_classname (out, " __attribute__((aligned(__alignof__( ", + jcf, jcf->super_class, 1); + fputs (" )))) ", stream); + } /* Now print the name of the thing. */ if (need_space)