box-drawing: fix compilation error on 32-bit; wc is int on 64-bit, long on 32-bit

This commit is contained in:
Daniel Eklöf 2020-12-26 16:34:55 +01:00
parent 7acdb3a0dd
commit 92dc581bea
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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;