diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-27 18:31:04 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-09-27 18:31:04 -0400 |
commit | 627c097fdc146c6d6b468e595b56b2c01bcb1da7 (patch) | |
tree | 1a8fe6e323032e1b620250923e5ca508d421eea6 /gcc | |
parent | d149d5f5d91838e2b59dc914d2be4996128253d4 (diff) | |
download | gcc-627c097fdc146c6d6b468e595b56b2c01bcb1da7.zip gcc-627c097fdc146c6d6b468e595b56b2c01bcb1da7.tar.gz gcc-627c097fdc146c6d6b468e595b56b2c01bcb1da7.tar.bz2 |
(warn_with_method): Make arg int, not char.
From-SVN: r8148
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index b62ac123..87d784a 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -1,5 +1,5 @@ /* Implement classes and message passing for Objective C. - Copyright (C) 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. Author: Steve Naroff. This file is part of GNU CC. @@ -6448,7 +6448,7 @@ start_method_def (method) static void warn_with_method (message, mtype, method) char *message; - char mtype; + int mtype; tree method; { if (count_error (1) == 0) |