summaryrefslogtreecommitdiff
path: root/tests/testcolor.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-01-16 20:07:35 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-01-16 20:07:35 +0000
commit80e647a8dbc97662b9d966c0f7a8e1aedea89eed (patch)
treed3a322c28112b7623765847aa32e8e319c576b45 /tests/testcolor.c
parente6b83e4264b4ad2ab73a3239d902b4064c75634d (diff)
downloadpango-80e647a8dbc97662b9d966c0f7a8e1aedea89eed.tar.gz
*.c, *.h: Drop trailing whitespace.
2007-01-16 Behdad Esfahbod <behdad@gnome.org> *.c, *.h: Drop trailing whitespace. svn path=/trunk/; revision=2163
Diffstat (limited to 'tests/testcolor.c')
-rw-r--r--tests/testcolor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testcolor.c b/tests/testcolor.c
index 1befafb9..1995d3d6 100644
--- a/tests/testcolor.c
+++ b/tests/testcolor.c
@@ -26,7 +26,7 @@ typedef struct _ColorSpec {
const gchar *spec;
gboolean valid;
guint16 red;
- guint16 green;
+ guint16 green;
guint16 blue;
} ColorSpec;
@@ -38,7 +38,7 @@ static gboolean test_color (ColorSpec *spec)
accepted = pango_color_parse (&color, spec->spec);
if (accepted == spec->valid &&
- (!accepted ||
+ (!accepted ||
(color.red == spec->red &&
color.green == spec->green &&
color.blue == spec->blue)))
@@ -78,8 +78,8 @@ ColorSpec specs [] = {
{ NULL, 0, 0, 0, 0 }
};
-int
-main (int argc, char *argv[])
+int
+main (int argc, char *argv[])
{
gboolean success;
ColorSpec *spec;