diff options
Diffstat (limited to 'pango/pango-color.c')
-rw-r--r-- | pango/pango-color.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pango/pango-color.c b/pango/pango-color.c index a2a88530..b469e83c 100644 --- a/pango/pango-color.c +++ b/pango/pango-color.c @@ -163,8 +163,8 @@ find_color(const char *name, ColorEntry *found; found = bsearch (name, color_entries, G_N_ELEMENTS (color_entries), - sizeof (ColorEntry), - compare_xcolor_entries); + sizeof (ColorEntry), + compare_xcolor_entries); if (found == NULL) return FALSE; @@ -223,7 +223,7 @@ pango_color_parse (PangoColor *color, spec++; len = strlen (spec); if (len % 3 || len < 3 || len > 12) - return FALSE; + return FALSE; len /= 3; @@ -248,12 +248,12 @@ pango_color_parse (PangoColor *color, color->red = r; color->green = g; color->blue = b; - } + } } else { if (!find_color (spec, color)) - return FALSE; + return FALSE; } return TRUE; } |