diff options
author | Mattias Andrée <maandree@kth.se> | 2016-08-06 15:07:45 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-08-06 15:07:45 +0200 |
commit | 309248a2042ba0cb481aa8a5377c3a609e7292cb (patch) | |
tree | b8619f0f4bc21418482c1588ad3fa8ece19bf234 | |
parent | Beginning of cg-query (diff) | |
download | cg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.gz cg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.bz2 cg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | src/cg-query.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cg-query.c b/src/cg-query.c index b43613c..4178660 100644 --- a/src/cg-query.c +++ b/src/cg-query.c @@ -189,13 +189,13 @@ static int print_info(void) if (info.have_gamut) { - printf("Monitor's red colour: %lf, %lf\n", + printf("Monitor's red colour (x, y): %lf, %lf\n", info.red_x / (double)1024, info.red_y / (double)1024); - printf("Monitor's green colour: %lf, %lf\n", + printf("Monitor's green colour (x, y): %lf, %lf\n", info.green_x / (double)1024, info.green_y / (double)1024); - printf("Monitor's blue colour: %lf, %lf\n", + printf("Monitor's blue colour (x, y): %lf, %lf\n", info.blue_x / (double)1024, info.blue_y / (double)1024); } |