diff options
author | Toon Moene <toon@moene.indiv.nluug.nl> | 1998-09-03 22:22:48 +0200 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-09-03 20:22:48 +0000 |
commit | ec066414f096d61dc99440804958dfac2645137b (patch) | |
tree | c071b6650983b5d5f42bfb282fe829f142255baf /gcc | |
parent | 5bb1b56949670af2cbbdc4b6d769978515a979cb (diff) | |
download | gcc-ec066414f096d61dc99440804958dfac2645137b.zip gcc-ec066414f096d61dc99440804958dfac2645137b.tar.gz gcc-ec066414f096d61dc99440804958dfac2645137b.tar.bz2 |
From Toon Moene <toon@moene.indiv.nluug.nl>
* config/nextstep.c (handle_pragma): Correct name of third
argument.
From-SVN: r22225
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/nextstep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c025c6..ed5f401 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 3 13:34:41 1998 Toon Moene <toon@moene.indiv.nluug.nl> + + * config/nextstep.c (handle_pragma): Correct name of third + argument. + Tue Sep 1 11:30:33 1998 Nick Clifton <nickc@cygnus.com> * config/m32r/m32r.md: Change (reg:CC 17) to (reg:SI 17). diff --git a/gcc/config/nextstep.c b/gcc/config/nextstep.c index bdf1335..1c658fb 100644 --- a/gcc/config/nextstep.c +++ b/gcc/config/nextstep.c @@ -45,7 +45,7 @@ extern char *get_directive_line (); The result is 1 if the pragma was handled. */ int -handle_pragma (p_getc, p_ungetc, name) +handle_pragma (p_getc, p_ungetc, pname) int (* p_getc) PROTO ((void)); void (* p_ungetc) PROTO ((int)); char * pname; |