summaryrefslogtreecommitdiff
path: root/source/fitz/font.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-06-05 10:46:06 -0700
committerSebastian Rasmussen <sebras@gmail.com>2017-06-15 22:17:23 +0800
commitc0cd3add8485819a17588a4fd37087d51d45a52e (patch)
treed28e3fca150cd8b1472bd4040147816d059897e5 /source/fitz/font.c
parenta1474f951dd7ea03715eeae903b94a5a5e7b5c60 (diff)
downloadmupdf-c0cd3add8485819a17588a4fd37087d51d45a52e.tar.xz
Silence warning about not building a glyph bbox table.
This is very common and not a problem. Let's keep warnings for problematic things, and not use them for informational messages such as these.
Diffstat (limited to 'source/fitz/font.c')
-rw-r--r--source/fitz/font.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/fitz/font.c b/source/fitz/font.c
index a1483916..67f87828 100644
--- a/source/fitz/font.c
+++ b/source/fitz/font.c
@@ -72,8 +72,6 @@ fz_new_font(fz_context *ctx, const char *name, int use_glyph_bbox, int glyph_cou
}
else
{
- if (use_glyph_bbox)
- fz_warn(ctx, "not building glyph bbox table for font '%s' with %d glyphs", font->name, glyph_count);
font->bbox_table = NULL;
}