From b5443cc46dd1485d6c785dd8c65a2c07bd5a17f3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 15 Jan 2019 20:19:40 +0100 Subject: patch 8.1.0753: printf format not checked for semsg() Problem: printf format not checked for semsg(). Solution: Add GNUC attribute and fix reported problems. (Dominique Pelle, closes #3805) --- src/gui_x11.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/gui_x11.c') diff --git a/src/gui_x11.c b/src/gui_x11.c index 91f166fa85..42fb7ca86e 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; } } -- cgit v1.2.3