From 92dc581bea428a69bb944d574629f8ad7f0dd3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 26 Dec 2020 16:34:55 +0100 Subject: [PATCH] box-drawing: fix compilation error on 32-bit; wc is int on 64-bit, long on 32-bit --- box-drawing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/box-drawing.c b/box-drawing.c index c7e5ec7f..0319412f 100644 --- a/box-drawing.c +++ b/box-drawing.c @@ -183,7 +183,7 @@ draw_glyph(wchar_t wc, pixman_image_t *pix, int width, int height, int stride) case 0x259d: case 0x259e: case 0x259f: - LOG_WARN("unimplemented: box drawing: wc=%04x", wc); + LOG_WARN("unimplemented: box drawing: wc=%04lx", (long)wc); //assert(false); break; } @@ -192,7 +192,7 @@ draw_glyph(wchar_t wc, pixman_image_t *pix, int width, int height, int stride) struct fcft_glyph * box_drawing(struct terminal *term, wchar_t wc) { - LOG_DBG("rendering 0x%04x", wc); + LOG_DBG("rendering 0x%04lx", (long)wc); int width = term->cell_width; int height = term->cell_height;