summaryrefslogtreecommitdiff
path: root/pango/fonts.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/fonts.c')
-rw-r--r--pango/fonts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/fonts.c b/pango/fonts.c
index da1940f2..887f03cb 100644
--- a/pango/fonts.c
+++ b/pango/fonts.c
@@ -613,14 +613,14 @@ compute_distance (const PangoFontDescription *a,
{
if (a->style == b->style)
{
- return abs(a->weight - b->weight);
+ return abs((int)(a->weight) - (int)(b->weight));
}
else if (a->style != PANGO_STYLE_NORMAL &&
b->style != PANGO_STYLE_NORMAL)
{
/* Equate oblique and italic, but with a big penalty
*/
- return 1000000 + abs (a->weight - b->weight);
+ return 1000000 + abs ((int)(a->weight) - (int)(b->weight));
}
else
return G_MAXINT;