diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-07-15 17:08:02 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-07-15 17:08:02 +0200 |
| commit | 3569a10c97d41913dbf7cf3114cb4d2d5f17dc7f (patch) | |
| tree | e8b08fe9b0cdc208f66582309377bc3c1817fe1f /src/blind-colour-srgb.c | |
| parent | Generate USING_BINARY{32,64} (diff) | |
| download | blind-3569a10c97d41913dbf7cf3114cb4d2d5f17dc7f.tar.gz blind-3569a10c97d41913dbf7cf3114cb4d2d5f17dc7f.tar.bz2 blind-3569a10c97d41913dbf7cf3114cb4d2d5f17dc7f.tar.xz | |
Some improvements and fixes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | src/blind-colour-srgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blind-colour-srgb.c b/src/blind-colour-srgb.c index 3a23a0f..e5d1925 100644 --- a/src/blind-colour-srgb.c +++ b/src/blind-colour-srgb.c @@ -36,7 +36,7 @@ main(int argc, char *argv[]) } srgb_to_ciexyz(red, green, blue, &X, &Y, &Z); - printf("%lf %lf %lf\n", X, Y, Z); + printf("%.50lf %.50lf %.50lf\n", X, Y, Z); efshut(stdout, "<stdout>"); return 0; } |
