diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-01-29 11:41:02 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-01-29 11:41:02 +0000 |
commit | 1c5d09e4af5c154cea90ff98610c15b70f6ba606 (patch) | |
tree | c3cb102b4a0f46fc17ea8828e5d857647ce42108 /gcc/cpperror.c | |
parent | 22b4cc659540fea9ce63b60dcf36e1727f036eee (diff) | |
download | gcc-1c5d09e4af5c154cea90ff98610c15b70f6ba606.tar.gz |
collect2.c (error): Fix typo in declaration.
* collect2.c (error): Fix typo in declaration.
* cpperror.c (cpp_message): Likewise.
* cpplib.c (cpp_warning): Likewise.
* cpplib.h (cpp_notice): Use PVPROTO not VPROTO, also add
ATTRIBUTE_PRINTF_1.
* toplev.c (error): Fix typo in declaration.
From-SVN: r24904
Diffstat (limited to 'gcc/cpperror.c')
-rw-r--r-- | gcc/cpperror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c index af7ab8c9a63..174450bceb2 100644 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -129,7 +129,7 @@ cpp_message VPROTO ((cpp_reader *pfile, int is_error, const char *msgid, ...)) #ifndef ANSI_PROTOTYPES cpp_reader *pfile; int is_error; - const char *msg; + const char *msgid; #endif va_list ap; |