diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-28 06:53:12 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-28 06:53:12 +0000 |
commit | cc6b52a659eadc6209d1ec42259de5d58c419ad3 (patch) | |
tree | 74507459c6868c4776339da0be38c17eefb7dac5 /gcc/pretty-print.c | |
parent | 8af3ea9069077af6b62ba4351cfde0823dff2fac (diff) | |
download | gcc-cc6b52a659eadc6209d1ec42259de5d58c419ad3.tar.gz |
* pretty-print.c (pp_base_format): Fix typo for %>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104728 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/pretty-print.c')
-rw-r--r-- | gcc/pretty-print.c | 2 |
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; |