summaryrefslogtreecommitdiff
path: root/source/fitz/context.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-06-09 15:57:02 +0200
committerTor Andersson <tor.andersson@artifex.com>2014-06-10 17:09:28 +0200
commit14ca805423104ce90117b4b03a2de2ccfd9c277d (patch)
tree4eccdfbd0dce249ebcab180de2d6cd9b801b2740 /source/fitz/context.c
parentfdea617e38c4d4579b4edcc9ffaf7e4a8b067d6f (diff)
downloadmupdf-14ca805423104ce90117b4b03a2de2ccfd9c277d.tar.xz
Fix library/header version error message and makefile dependency.
Diffstat (limited to 'source/fitz/context.c')
-rw-r--r--source/fitz/context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/context.c b/source/fitz/context.c
index d54e5b7d..6a986e59 100644
--- a/source/fitz/context.c
+++ b/source/fitz/context.c
@@ -128,7 +128,7 @@ fz_new_context_imp(fz_alloc_context *alloc, fz_locks_context *locks, unsigned in
if (strcmp(version, FZ_VERSION))
{
- fprintf(stderr, "cannot create context: incompatible header (%s) and library (%s) versions", version, FZ_VERSION);
+ fprintf(stderr, "cannot create context: incompatible header (%s) and library (%s) versions\n", version, FZ_VERSION);
return NULL;
}