diff options
author | Richard Hughes <richard@hughsie.com> | 2013-04-09 22:36:52 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2013-04-09 22:36:52 +0100 |
commit | 52dc626250d2dfd7fc1a9b290efd4e8d3c420724 (patch) | |
tree | 64458dfa755ba95f71f3db571f941a2af9c2d72b /lib | |
parent | fdaec65eb14a81bdd54907a1205899b53ec8d653 (diff) | |
download | colord-52dc626250d2dfd7fc1a9b290efd4e8d3c420724.tar.gz |
trivial: small whitespace fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/colord/cd-math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/colord/cd-math.c b/lib/colord/cd-math.c index 6014d4b..f17b0e8 100644 --- a/lib/colord/cd-math.c +++ b/lib/colord/cd-math.c @@ -358,7 +358,7 @@ cd_mat33_matrix_multiply (const CdMat3x3 *mat_src1, const CdMat3x3 *mat_src2, Cd cd_mat33_clear (mat_dest); for (i = 0; i < 3; i++) { for (j = 0; j < 3; j++) { - for (k=0; k<3; k++) { + for (k = 0; k < 3; k++) { dest[3 * i + j] += src1[i * 3 + k] * src2[k * 3 + j]; } } |