* error.c (cp_error_at): Fix typo.

From-SVN: r54299
This commit is contained in:
Gabriel Dos Reis 2002-06-06 03:20:10 +00:00 committed by Gabriel Dos Reis
parent b2e2d0cc3a
commit 3cb8660c64
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-06-06 Gabriel Dos Reis <gdr@codesourcery.com>
* error.c (cp_error_at): Fix typo.
2002-06-04 Gabriel Dos Reis <gdr@codesourcery.com>
* error.c (cp_diagnostic_starter): Adjust call.

View file

@ -2690,7 +2690,7 @@ cp_error_at VPARAMS ((const char *msgid, ...))
VA_FIXEDARG (ap, const char *, msgid);
diagnostic_set_info (&diagnostic, msgid, &ap,
cp_file_of (here), cp_line_of (here), DK_WARNING);
cp_file_of (here), cp_line_of (here), DK_ERROR);
report_diagnostic (&diagnostic);
VA_CLOSE (ap);
}