diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2015-12-15 12:30:34 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2015-12-15 14:11:10 +0100 |
commit | 6c998c92c40332d858ed3a29776bc1b22da2ed22 (patch) | |
tree | 72ef41edcf14cfc91520eea55ce68a9547aded27 /source/pdf/pdf-lex.c | |
parent | 209046c6faf046e7198cd159c232cfb885c58740 (diff) | |
download | mupdf-6c998c92c40332d858ed3a29776bc1b22da2ed22.tar.xz |
Rename fz_buffer_cat to fz_append_buffer.
Diffstat (limited to 'source/pdf/pdf-lex.c')
-rw-r--r-- | source/pdf/pdf-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-lex.c b/source/pdf/pdf-lex.c index 26a0f2e7..0a909a02 100644 --- a/source/pdf/pdf-lex.c +++ b/source/pdf/pdf-lex.c @@ -587,7 +587,7 @@ void pdf_print_token(fz_context *ctx, fz_buffer *fzbuf, int tok, pdf_lexbuf *buf if (buf->len >= buf->size) pdf_lexbuf_grow(ctx, buf); buf->scratch[buf->len] = 0; - fz_buffer_cat_pdf_string(ctx, fzbuf, buf->scratch); + fz_buffer_print_pdf_string(ctx, fzbuf, buf->scratch); break; case PDF_TOK_OPEN_DICT: fz_buffer_printf(ctx, fzbuf, "<<"); |