aboutsummaryrefslogtreecommitdiff
path: root/gcc/collect2.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-01-29 11:41:02 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-01-29 11:41:02 +0000
commit1c5d09e4af5c154cea90ff98610c15b70f6ba606 (patch)
treec3cb102b4a0f46fc17ea8828e5d857647ce42108 /gcc/collect2.c
parent22b4cc659540fea9ce63b60dcf36e1727f036eee (diff)
downloadgcc-1c5d09e4af5c154cea90ff98610c15b70f6ba606.zip
gcc-1c5d09e4af5c154cea90ff98610c15b70f6ba606.tar.gz
gcc-1c5d09e4af5c154cea90ff98610c15b70f6ba606.tar.bz2
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/collect2.c')
-rw-r--r--gcc/collect2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/collect2.c b/gcc/collect2.c
index b640775..6ec9f31 100644
--- a/gcc/collect2.c
+++ b/gcc/collect2.c
@@ -476,7 +476,7 @@ void
error VPROTO((const char * msgid, ...))
{
#ifndef ANSI_PROTOTYPES
- const char * string;
+ const char * msgid;
#endif
va_list ap;