From: Andrew Pinski Date: Fri, 1 Jul 2005 03:39:19 +0000 (+0000) Subject: parse.y (issue_warning_error_from_context): Update for the renaming of pp_format_text... X-Git-Tag: misc/cutover-cvs2svn~2029 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ce2456a6da65df38f6538109004bf5fc520eb24;p=thirdparty%2Fgcc.git parse.y (issue_warning_error_from_context): Update for the renaming of pp_format_text to pp_format. 2005-06-29 Andrew Pinski * parse.y (issue_warning_error_from_context): Update for the renaming of pp_format_text to pp_format. From-SVN: r101497 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 68699ffe3cf9..4c6dddbf2fea 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2005-06-29 Andrew Pinski + + * parse.y (issue_warning_error_from_context): Update for the + renaming of pp_format_text to pp_format. + 2005-06-28 Paul Brook * decl.c (java_init_decl_processing): Call diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 0a513b1f92d8..6b7ec3f4dca9 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -3141,7 +3141,7 @@ issue_warning_error_from_context ( text.err_no = errno; text.args_ptr = ap; text.format_spec = gmsgid; - pp_format_text (global_dc->printer, &text); + pp_format (global_dc->printer, &text); strncpy (buffer, pp_formatted_text (global_dc->printer), sizeof (buffer) - 1); buffer[sizeof (buffer) - 1] = '\0'; pp_clear_output_area (global_dc->printer);