From f89f7192efc43daa64c1fb591d0cfcc098b82c82 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 7 Sep 2017 21:08:02 +0100 Subject: fix size+t formatting in logging --- frontends/gtk/layout_pango.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'frontends/gtk') diff --git a/frontends/gtk/layout_pango.c b/frontends/gtk/layout_pango.c index 9e17c3b1c..a5964eb37 100644 --- a/frontends/gtk/layout_pango.c +++ b/frontends/gtk/layout_pango.c @@ -30,6 +30,7 @@ #include "utils/log.h" #include "utils/nsoption.h" +#include "netsurf/inttypes.h" #include "netsurf/layout.h" #include "netsurf/plot_style.h" @@ -85,8 +86,8 @@ nsfont_width(const plot_font_style_t *fstyle, pango_layout_get_pixel_size(nsfont_pango_layout, width, 0); NSLOG(netsurf, DEEPDEBUG, - "fstyle: %p string:\"%.*s\", length: %u, width: %dpx", - fstyle, length, string, length, *width); + "fstyle: %p string:\"%.*s\", length: %" PRIsizet ", width: %dpx", + fstyle, (int)length, string, length, *width); return NSERROR_OK; -- cgit v1.2.3