summaryrefslogtreecommitdiff
path: root/gcc/pretty-print.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2005-09-27 23:53:12 -0700
committerRichard Henderson <rth@gcc.gnu.org>2005-09-27 23:53:12 -0700
commit241de8a07a96fc477a6c036c62d06ce96c00b452 (patch)
tree74507459c6868c4776339da0be38c17eefb7dac5 /gcc/pretty-print.c
parent7797e3385c5343f8f0bf9cae2cc80c4aaf93d9fa (diff)
downloadgcc-241de8a07a96fc477a6c036c62d06ce96c00b452.tar.gz
* pretty-print.c (pp_base_format): Fix typo for %>.
From-SVN: r104728
Diffstat (limited to 'gcc/pretty-print.c')
-rw-r--r--gcc/pretty-print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/pretty-print.c b/gcc/pretty-print.c
index b98f5dd754a..3848c1a9510 100644
--- a/gcc/pretty-print.c
+++ b/gcc/pretty-print.c
@@ -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;