aboutsummaryrefslogtreecommitdiff
path: root/pixman/pixman/pixman-matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'pixman/pixman/pixman-matrix.c')
-rw-r--r--pixman/pixman/pixman-matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pixman/pixman/pixman-matrix.c b/pixman/pixman/pixman-matrix.c
index 8d0d97325..6d215ff10 100644
--- a/pixman/pixman/pixman-matrix.c
+++ b/pixman/pixman/pixman-matrix.c
@@ -471,8 +471,8 @@ pixman_f_transform_invert (struct pixman_f_transform * dst,
{
double det;
int i, j;
- static int a[3] = { 2, 2, 1 };
- static int b[3] = { 1, 0, 0 };
+ static const int a[3] = { 2, 2, 1 };
+ static const int b[3] = { 1, 0, 0 };
det = 0;
for (i = 0; i < 3; i++)