Fix some warnings
authorSøren Sandmann Pedersen <ssp@redhat.com>
Tue, 19 Jan 2010 19:23:57 +0000 (14:23 -0500)
committerSøren Sandmann Pedersen <ssp@redhat.com>
Tue, 19 Jan 2010 19:23:57 +0000 (14:23 -0500)
pixman/pixman-image.c
test/fetch-test.c

index 1619165..a4df4e5 100644 (file)
@@ -247,7 +247,7 @@ _pixman_image_validate (pixman_image_t *image)
     }
 
     if (image->common.alpha_map)
-       _pixman_image_validate (image->common.alpha_map);
+       _pixman_image_validate ((pixman_image_t *)image->common.alpha_map);
 }
 
 PIXMAN_EXPORT pixman_bool_t
index c7b32ff..2ca16dd 100644 (file)
@@ -6,7 +6,7 @@
 
 #define SIZE 1024
 
-static const pixman_indexed_t mono_palette =
+static pixman_indexed_t mono_palette =
 {
     .rgba = { 0x00000000, 0x00ffffff },
 };
@@ -21,7 +21,7 @@ typedef struct {
     pixman_indexed_t *indexed;
 } testcase_t;
 
-static const testcase_t testcases[] =
+static testcase_t testcases[] =
 {
     {
        .format = PIXMAN_a8r8g8b8,
@@ -100,7 +100,7 @@ static const testcase_t testcases[] =
     },
 };
 
-const int n_test_cases = sizeof(testcases)/sizeof(testcases[0]);
+int n_test_cases = sizeof(testcases)/sizeof(testcases[0]);
 
 
 static uint32_t