diff options
Diffstat (limited to 'source/fitz')
-rw-r--r-- | source/fitz/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/output.c b/source/fitz/output.c index a06a81b6..4c6aa6b4 100644 --- a/source/fitz/output.c +++ b/source/fitz/output.c @@ -197,7 +197,7 @@ fz_new_output_with_path(fz_context *ctx, const char *filename, int append) if (errno != ENOENT) fz_throw(ctx, FZ_ERROR_GENERIC, "cannot remove file '%s': %s", filename, strerror(errno)); } - file = fz_fopen_utf8(filename, "rb"); + file = fz_fopen_utf8(filename, append ? "ab" : "wb"); #else /* Ensure we create a brand new file. We don't want to clobber our old file. */ if (!append) |