aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-colour-ciexyz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blind-colour-ciexyz.c')
-rw-r--r--src/blind-colour-ciexyz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blind-colour-ciexyz.c b/src/blind-colour-ciexyz.c
index 64f48c5..9710074 100644
--- a/src/blind-colour-ciexyz.c
+++ b/src/blind-colour-ciexyz.c
@@ -14,7 +14,7 @@ main(int argc, char *argv[])
Y = etolf_arg("the Y value", argv[0]);
X = Y * D65_XYZ_X;
Z = Y * D65_XYZ_Z;
- printf("%lf %lf %lf\n", X, Y, Z);
+ printf("%.50lf %.50lf %.50lf\n", X, Y, Z);
} else if (argc == 3) {
printf("%s %s %s\n", argv[0], argv[1], argv[2]);
} else {