From 4b2802c546be242b212be09277f83099557eb429 Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Thu, 9 Oct 2008 23:07:38 +0000 Subject: Whole bunch of warning fixes in GTK svn path=/trunk/netsurf/; revision=5521 --- gtk/font_pango.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk/font_pango.c') diff --git a/gtk/font_pango.c b/gtk/font_pango.c index e1ec7b6fe..e5994e71e 100644 --- a/gtk/font_pango.c +++ b/gtk/font_pango.c @@ -314,7 +314,7 @@ PangoFontDescription *nsfont_style_to_description( else size = css_len2pt(&style->font_size.value.length, style); - if (size < abs(option_font_min_size / 10)) + if (size < (unsigned)abs(option_font_min_size / 10)) size = option_font_min_size / 10; size *= PANGO_SCALE; -- cgit v1.2.3