diff options
author | rmathew <rmathew@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-27 18:16:49 +0000 |
---|---|---|
committer | rmathew <rmathew@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-27 18:16:49 +0000 |
commit | 83a070d097f99d06eb00fd6d3ea33d4aa4336afd (patch) | |
tree | ae6a831680a4a8773039866e4630fca3682dcab3 /gcc/java/zextract.c | |
parent | dec00f2017a1601ab1b770b4b01e42f18d9092fc (diff) | |
download | gcc-83a070d097f99d06eb00fd6d3ea33d4aa4336afd.tar.gz |
Formatting fixes.
* expr.c (class_has_finalize_method): Fix method name indentation.
(expand_java_call): Remove K&R style parameter declaration.
(expand_invoke): Fix statement indentation.
(expand_java_field_op): Likewise.
* parse-scan.y: Fix typo.
(reset_report): Fix method name indentation.
* parse.y (unresolved_type_p, build_expr_block): Remove extra blank
line. Fix typos.
* verify.c (verify_jvm_instructions): Document parameters, insert
page break.
* lang.c (lang_init_source): Fix method name indentation.
* class.c (common_enclosing_context_p): Likewise.
(emit_symbol_table): Fix parameter list indentation.
* decl.c (add_stmt_to_compound, java_add_stmt): Remove K&R style
parameter declaration.
* constants.c: Fix copyright notice indentation.
* typeck.c (find_method_in_superclasses): Fix parameter list
indentation.
(find_method_in_interfaces): Likewise.
* zextract.c (makelong): Fix method name indentation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83738 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/zextract.c')
-rw-r--r-- | gcc/java/zextract.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/java/zextract.c b/gcc/java/zextract.c index 8800bd4ecfc..ee464124d22 100644 --- a/gcc/java/zextract.c +++ b/gcc/java/zextract.c @@ -1,7 +1,7 @@ /* Handle a .class file embedded in a .zip archive. This extracts a member from a .zip file, but does not handle uncompression (since that is not needed for classes.zip). - Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003 + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -236,7 +236,8 @@ static ush makeword(const uch *b) /* Function makelong() */ /***********************/ -static ulg makelong(const uch *sig) +static ulg +makelong (const uch *sig) { /* * Convert intel style 'long' variable to non-Intel non-16-bit |