diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-04 01:16:32 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-04 01:16:32 +0000 |
commit | d65b3a4091670f1e49fadb3f1a0a336dd96ae7d7 (patch) | |
tree | 771a18a7e0143049cc335c7595e497a28f9625ec /libcpp/errors.c | |
parent | cc9012f7c74cf3452cdb1b6cde3cf6455e889cd3 (diff) | |
download | gcc-d65b3a4091670f1e49fadb3f1a0a336dd96ae7d7.tar.gz |
gcc/cp:
* cp-tree.h (cp_cpp_error), error.c (cp_cpp_error): Take va_list*
parameter.
libcpp:
* include/cpplib.h (struct cpp_callbacks): Make error take
va_list* parameter.
* errors.c (cpp_error): Update call to callback.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106466 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/errors.c')
-rw-r--r-- | libcpp/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/errors.c b/libcpp/errors.c index 554d9e3c5f1..97de4900001 100644 --- a/libcpp/errors.c +++ b/libcpp/errors.c @@ -141,7 +141,7 @@ cpp_error (cpp_reader * pfile, int level, const char *msgid, ...) va_start (ap, msgid); if (CPP_OPTION (pfile, client_diagnostic)) - pfile->cb.error (pfile, level, _(msgid), ap); + pfile->cb.error (pfile, level, _(msgid), &ap); else { if (CPP_OPTION (pfile, traditional)) |