diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-11-04 01:16:32 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-11-04 01:16:32 +0000 |
commit | a63607ed439ce64133d0c1927e8ef7eccd013539 (patch) | |
tree | 771a18a7e0143049cc335c7595e497a28f9625ec /libcpp/errors.c | |
parent | 651ed94280e4b88bf4fb69be0451cf2766ec9ab0 (diff) | |
download | gcc-a63607ed439ce64133d0c1927e8ef7eccd013539.tar.gz |
cp-tree.h (cp_cpp_error), [...]): Take va_list* parameter.
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.
From-SVN: r106466
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)) |