summaryrefslogtreecommitdiff
path: root/src/fcmatrix.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2010-04-12 12:18:50 -0400
committerBehdad Esfahbod <behdad@behdad.org>2010-04-12 12:19:05 -0400
commit594dcef0f30ca27e27b95a9174087e8c61327e5f (patch)
tree4246b6995dc57fdaa79a9bc6d7319b1cde198ac0 /src/fcmatrix.c
parentd0d1f3904c9f6af9f39a5a085e454cde5ba9d44e (diff)
downloadfontconfig-594dcef0f30ca27e27b95a9174087e8c61327e5f.tar.gz
Remove all training whitespaces
Diffstat (limited to 'src/fcmatrix.c')
-rw-r--r--src/fcmatrix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fcmatrix.c b/src/fcmatrix.c
index 1d6e2f6..f0c6139 100644
--- a/src/fcmatrix.c
+++ b/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;