From: Guillaume Desmottes Date: Wed, 15 Dec 2010 15:50:52 +0000 (+0100) Subject: remove useless paranthesis X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=91aa125dff5bbd4e967aa4cbec4892b4158c2f5b remove useless paranthesis --- diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index d7abb9a5..e2946e51 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -1904,7 +1904,7 @@ empathy_make_color_whiter (GdkRGBA *color) { const GdkRGBA white = { 1.0, 1.0, 1.0, 1.0 }; - color->red = (color->red + (white).red) / 2; - color->green = (color->green + (white).green) / 2; - color->blue = (color->blue + (white).blue) / 2; + color->red = (color->red + white.red) / 2; + color->green = (color->green + white.green) / 2; + color->blue = (color->blue + white.blue) / 2; }