]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
parse.y (issue_warning_error_from_context): Update for the renaming of pp_format_text...
authorAndrew Pinski <pinskia@physics.uc.edu>
Fri, 1 Jul 2005 03:39:19 +0000 (03:39 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Fri, 1 Jul 2005 03:39:19 +0000 (20:39 -0700)
2005-06-29  Andrew Pinski  <pinskia@physics.uc.edu>

        * parse.y (issue_warning_error_from_context): Update for the
        renaming of pp_format_text to pp_format.

From-SVN: r101497

gcc/java/ChangeLog
gcc/java/parse.y

index 68699ffe3cf922a7116ef86e83a97ca30c9568a1..4c6dddbf2feab818513b0293375aa75da9ca1556 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-29  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * parse.y (issue_warning_error_from_context): Update for the
+       renaming of pp_format_text to pp_format.
+
 2005-06-28  Paul Brook  <paul@codesourcery.com>
 
        * decl.c (java_init_decl_processing): Call
index 0a513b1f92d85d4a71ed83e2af890dff0d690a29..6b7ec3f4dca98342b60448115af42c163a73ea50 100644 (file)
@@ -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);