summaryrefslogtreecommitdiff
path: root/apps/mupdfclean.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-03-02 01:06:10 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-03-06 16:10:22 +0100
commit19fdc5eff56166999bfd7342d76358220dd52ca4 (patch)
tree26ea89757c903148a3397d6a6ed096d176cdb68c /apps/mupdfclean.c
parent3e17c272716912611513818c0845bc7093b67241 (diff)
downloadmupdf-19fdc5eff56166999bfd7342d76358220dd52ca4.tar.xz
Remove stray newlines in error messages.
Diffstat (limited to 'apps/mupdfclean.c')
-rw-r--r--apps/mupdfclean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mupdfclean.c b/apps/mupdfclean.c
index f47ea2b5..c8a81274 100644
--- a/apps/mupdfclean.c
+++ b/apps/mupdfclean.c
@@ -792,7 +792,7 @@ int main(int argc, char **argv)
xref = pdf_open_document(ctx, infile);
if (pdf_needs_password(xref))
if (!pdf_authenticate_password(xref, password))
- fz_throw(ctx, "cannot authenticate password: %s\n", infile);
+ fz_throw(ctx, "cannot authenticate password: %s", infile);
out = fopen(outfile, "wb");
if (!out)