summaryrefslogtreecommitdiff
path: root/src/gui_x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui_x11.c')
-rw-r--r--src/gui_x11.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c
index 91f166fa8..42fb7ca86 100644
--- a/src/gui_x11.c
+++ b/src/gui_x11.c
@@ -2210,9 +2210,10 @@ check_fontset_sanity(XFontSet fs)
semsg(_("E253: Fontset name: %s"), base_name);
semsg(_("Font0: %s"), font_name[min_font_idx]);
semsg(_("Font1: %s"), font_name[i]);
- semsg(_("Font%ld width is not twice that of font0"), i);
- semsg(_("Font0 width: %ld"), xfs[min_font_idx]->max_bounds.width);
- semsg(_("Font1 width: %ld"), xfs[i]->max_bounds.width);
+ semsg(_("Font%d width is not twice that of font0"), i);
+ semsg(_("Font0 width: %d"),
+ (int)xfs[min_font_idx]->max_bounds.width);
+ semsg(_("Font%d width: %d"), i, (int)xfs[i]->max_bounds.width);
return FAIL;
}
}