summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-08 13:01:27 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-10-08 13:01:27 -0400
commit358f96d20219b4460bfd8ecf88e69ff10044b577 (patch)
treeb98d1a49df060e6d922e94339e7b39231b73ba53
parent93acc10617c88fbf933120c6980ae8ef80cf94f0 (diff)
Fix double semicolon; pointed out by Travis Griggs
-rw-r--r--test/blitters-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/blitters-test.c b/test/blitters-test.c
index b364845..569e946 100644
--- a/test/blitters-test.c
+++ b/test/blitters-test.c
@@ -174,7 +174,7 @@ image_endian_swap (pixman_image_t *img, int bpp)
{
int stride = pixman_image_get_stride (img);
uint32_t *data = pixman_image_get_data (img);
- int height = pixman_image_get_height (img);;
+ int height = pixman_image_get_height (img);
int i, j;
/* swap bytes only on big endian systems */