diff options
Diffstat (limited to 'fitz/stm_output.c')
-rw-r--r-- | fitz/stm_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/stm_output.c b/fitz/stm_output.c index 534b3fa1..7b5fb05a 100644 --- a/fitz/stm_output.c +++ b/fitz/stm_output.c @@ -17,7 +17,7 @@ file_write(fz_output *out, const void *buffer, int count) } fz_output * -fz_new_output_file(fz_context *ctx, FILE *file) +fz_new_output_with_file(fz_context *ctx, FILE *file) { fz_output *out = fz_malloc_struct(ctx, fz_output); out->ctx = ctx; @@ -80,7 +80,7 @@ buffer_write(fz_output *out, const void *data, int len) } fz_output * -fz_new_output_buffer(fz_context *ctx, fz_buffer *buf) +fz_new_output_with_buffer(fz_context *ctx, fz_buffer *buf) { fz_output *out = fz_malloc_struct(ctx, fz_output); out->ctx = ctx; |