]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* pretty-print.c (pp_base_format): Fix typo for %>.
authorRichard Henderson <rth@redhat.com>
Wed, 28 Sep 2005 06:53:12 +0000 (23:53 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 28 Sep 2005 06:53:12 +0000 (23:53 -0700)
From-SVN: r104728

gcc/ChangeLog
gcc/pretty-print.c

index 8963cab452d44199d48e921502f2928de4cec756..36d71d02598e03736c1f8c3daf793e6d9a9e2c70 100644 (file)
@@ -1,3 +1,7 @@
+2005-09-27  Richard Henderson  <rth@redhat.com>
+
+       * pretty-print.c (pp_base_format): Fix typo for %>.
+
 2005-09-27  Daniel Berlin  <dberlin@dberlin.org>
            Devang Patel  <dpatel@apple.com>
 
index b98f5dd754ab309120e1defd0650b843ade09829..3848c1a9510fa208a6fe1ed022ac134945c4a415 100644 (file)
@@ -261,7 +261,7 @@ pp_base_format (pretty_printer *pp, text_info *text)
        case '>':
        case '\'':
          obstack_grow (&buffer->chunk_obstack,
-                       open_quote, strlen (close_quote));
+                       close_quote, strlen (close_quote));
          p++;
          continue;