diff options
author | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-12-10 18:59:55 -0800 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2000-12-10 18:59:55 -0800 |
commit | a0932f7d1ae8df5e6d975821546353c7e76d941b (patch) | |
tree | c9f5bac2f8f398249e7204f35c51191e4fe324e7 /fastjar/jargrep.c | |
parent | 48a9aced0cbb60ba261ec4bc9b4adf67d8bfc133 (diff) | |
download | gcc-a0932f7d1ae8df5e6d975821546353c7e76d941b.tar.gz |
[multiple changes]
2000-12-10 Robert Lipe <robertlipe@usa.net>
* jargrep.c (jargrep): Added null statement after case.
2000-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
* Makefile: Removed.
* Makefile.in: Rebuilt with `-i' and `--enable-foreign'.
(http://gcc.gnu.org/ml/gcc/2000-12/msg00294.html)
From-SVN: r38182
Diffstat (limited to 'fastjar/jargrep.c')
-rw-r--r-- | fastjar/jargrep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fastjar/jargrep.c b/fastjar/jargrep.c index 342acd0ad34..92461ac35b5 100644 --- a/fastjar/jargrep.c +++ b/fastjar/jargrep.c @@ -21,9 +21,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: jargrep.c,v 1.8 2000/09/13 14:02:02 cory Exp $ +/* $Id: jargrep.c,v 1.1 2000/12/09 03:08:23 apbianco Exp $ $Log: jargrep.c,v $ +Revision 1.1 2000/12/09 03:08:23 apbianco +2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com> + + * fastjar: Imported. + Revision 1.8 2000/09/13 14:02:02 cory Reformatted some of the code to more closly match the layout of the orriginal fastjar utility. @@ -561,6 +566,7 @@ void jargrep(regex_t *exp, regex_t *nl_exp, char *jarfile, int options) { break; case 2: /* fall through continue */ + ; } } } while(floop); |