aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-08-06 15:07:45 +0200
committerMattias Andrée <maandree@kth.se>2016-08-06 15:07:45 +0200
commit309248a2042ba0cb481aa8a5377c3a609e7292cb (patch)
treeb8619f0f4bc21418482c1588ad3fa8ece19bf234 /src
parentBeginning of cg-query (diff)
downloadcg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.gz
cg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.bz2
cg-tools-309248a2042ba0cb481aa8a5377c3a609e7292cb.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src')
-rw-r--r--src/cg-query.c6
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);
}