[gs-commits] mupdf 1.16.1.74 Squash double->float conversion warning.
[email protected] (Robin Watts) Thu, 3 Oct 2019 15:19:03 +0000 (UTC)
| Newsgroups | gmane.comp.printing.ghostscript.cvs |
|---|---|
| Message-ID | <[email protected]> |
commit cb3bc3bb2b2c9838567d0523495089b19a3bfdcc Author: Robin Watts <[email protected]> Date: Wed Oct 2 17:51:39 2019 +0100 Squash double->float conversion warning. diff --git a/source/fitz/font.c b/source/fitz/font.c index 7dfd3e2..0ec6c03 100644 --- a/source/fitz/font.c +++ b/source/fitz/font.c @@ -1842,8 +1842,8 @@ fz_bound_glyph(fz_context *ctx, fz_font *font, int gid, fz_matrix trm) { font->bbox_table[gid].x0 = 0; font->bbox_table[gid].y0 = 0; - font->bbox_table[gid].x1 = 0.0000001; - font->bbox_table[gid].y1 = 0.0000001; + font->bbox_table[gid].x1 = 0.0000001f; + font->bbox_table[gid].y1 = 0.0000001f; } } rect = font->bbox_table[gid]; http://git.ghostscript.com/?p=mupdf.git;a=commit;h=cb3bc3bb2b2c9838567d0523495089b19a3bfdcc -- MuPDF library Artifex Software, Inc.