diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2017-03-12 11:19:09 -0500 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2017-03-22 12:07:26 +0100 |
commit | cfb66cd25bbf31857b471735e5ff0f7c2aea4d3c (patch) | |
tree | 8d8d06c9e2c880611a3c8cc025d8c35fe38d59ba /source/gprf/gprf-skeleton.c | |
parent | 3832d0c7ab87aa1f2b3a3dbebe43a37e4055d121 (diff) | |
download | mupdf-cfb66cd25bbf31857b471735e5ff0f7c2aea4d3c.tar.xz |
Rename fz_putc/puts/printf to fz_write_*.
Rename fz_write to fz_write_data.
Rename fz_write_buffer_* and fz_buffer_printf to fz_append_*.
Be consistent in naming:
fz_write_* calls write to fz_output.
fz_append_* calls append to fz_buffer.
Update documentation.
Diffstat (limited to 'source/gprf/gprf-skeleton.c')
-rw-r--r-- | source/gprf/gprf-skeleton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gprf/gprf-skeleton.c b/source/gprf/gprf-skeleton.c index 23a50fbe..e990e55a 100644 --- a/source/gprf/gprf-skeleton.c +++ b/source/gprf/gprf-skeleton.c @@ -49,9 +49,9 @@ fz_save_gproof(fz_context *ctx, const char *pdf_file, fz_document *doc, const ch } /* Filenames */ - fz_write(ctx, out, pdf_file, strlen(pdf_file)+1); - fz_write(ctx, out, print_profile, strlen(print_profile) + 1); - fz_write(ctx, out, display_profile, strlen(display_profile) + 1); + fz_write_data(ctx, out, pdf_file, strlen(pdf_file)+1); + fz_write_data(ctx, out, print_profile, strlen(print_profile) + 1); + fz_write_data(ctx, out, display_profile, strlen(display_profile) + 1); } fz_always(ctx) { |