diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2014-04-23 17:05:53 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2014-04-23 17:05:53 +0200 |
commit | 4cb52a8a8578a04352e727c21ddc033dcff9e588 (patch) | |
tree | eec24ef09d9de9605537144618758afc071da6b2 /source/pdf/pdf-op-run.c | |
parent | 11cd137420d45f795b67f54f73cbf97010206d7a (diff) | |
download | mupdf-4cb52a8a8578a04352e727c21ddc033dcff9e588.tar.xz |
Fix 693391: simplify warning message
Don't print the code point number, to let the inhibition of multiple
identical warnings kick in.
Diffstat (limited to 'source/pdf/pdf-op-run.c')
-rw-r--r-- | source/pdf/pdf-op-run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-op-run.c b/source/pdf/pdf-op-run.c index b1e36403..ab1bf246 100644 --- a/source/pdf/pdf-op-run.c +++ b/source/pdf/pdf-op-run.c @@ -1214,7 +1214,7 @@ pdf_show_string(pdf_csi *csi, pdf_run_state *pr, unsigned char *buf, int len) if (cid >= 0) pdf_show_char(csi, pr, cid); else - fz_warn(ctx, "cannot encode character with code point %#x", cpt); + fz_warn(ctx, "cannot encode character"); if (cpt == 32 && w == 1) pdf_show_space(pr, gstate->word_space); } |