From 80ef70399639e4203b5d5f50e130a30aba221655 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Thu, 28 Jan 2016 20:06:34 +0000 Subject: MSVC: Fix trace device output MSVC doesn't understand %04X. Use %04x instead. --- source/fitz/trace-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fitz/trace-device.c b/source/fitz/trace-device.c index 8b2190dc..9f0acca3 100644 --- a/source/fitz/trace-device.c +++ b/source/fitz/trace-device.c @@ -43,7 +43,7 @@ fz_trace_text_span(fz_context *ctx, fz_output *out, fz_text_span *span) fz_printf(ctx, out, "\n", span->items[i].ucs, span->items[i].gid, span->items[i].x, span->items[i].y); else - fz_printf(ctx, out, "\n", + fz_printf(ctx, out, "\n", span->items[i].ucs, span->items[i].gid, span->items[i].x, span->items[i].y); } fz_printf(ctx, out, "\n"); -- cgit v1.2.3