diff options
author | marha <marha@users.sourceforge.net> | 2011-03-29 06:44:20 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-29 06:44:20 +0000 |
commit | 24abc56b37a3ec32a03b7eafccd96607ae13ea89 (patch) | |
tree | e3f598bb372c5189c86acbd7f87ca6ee897d114e /fontconfig/src/fcmatrix.c | |
parent | 0b9b391c5a7acb31e5d8061169649043a38d6d0e (diff) | |
download | vcxsrv-24abc56b37a3ec32a03b7eafccd96607ae13ea89.tar.gz vcxsrv-24abc56b37a3ec32a03b7eafccd96607ae13ea89.tar.bz2 vcxsrv-24abc56b37a3ec32a03b7eafccd96607ae13ea89.zip |
xserver fontconfig mesa git update 29 Mar 2011
Diffstat (limited to 'fontconfig/src/fcmatrix.c')
-rw-r--r-- | fontconfig/src/fcmatrix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fontconfig/src/fcmatrix.c b/fontconfig/src/fcmatrix.c index 1d6e2f6b0..f0c613918 100644 --- a/fontconfig/src/fcmatrix.c +++ b/fontconfig/src/fcmatrix.c @@ -30,10 +30,10 @@ const FcMatrix FcIdentityMatrix = { 1, 0, 0, 1 }; FcMatrix * -FcMatrixCopy (const FcMatrix *mat) +FcMatrixCopy (const FcMatrix *mat) { FcMatrix *r; - if(!mat) + if(!mat) return 0; r = (FcMatrix *) malloc (sizeof (*r) ); if (!r) @@ -58,7 +58,7 @@ FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2) { if(mat1 == mat2) return FcTrue; if(mat1 == 0 || mat2 == 0) return FcFalse; - return mat1->xx == mat2->xx && + return mat1->xx == mat2->xx && mat1->xy == mat2->xy && mat1->yx == mat2->yx && mat1->yy == mat2->yy; |