summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2013-04-09 22:36:52 +0100
committerRichard Hughes <richard@hughsie.com>2013-04-09 22:36:52 +0100
commit52dc626250d2dfd7fc1a9b290efd4e8d3c420724 (patch)
tree64458dfa755ba95f71f3db571f941a2af9c2d72b
parentfdaec65eb14a81bdd54907a1205899b53ec8d653 (diff)
downloadcolord-52dc626250d2dfd7fc1a9b290efd4e8d3c420724.tar.gz
trivial: small whitespace fix
-rw-r--r--lib/colord/cd-math.c2
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];
}
}