From 1dfefe2b5115a639a3bb934a999598f53598f917 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Sun, 4 Oct 2020 15:33:00 +0200 Subject: [PATCH] Update temperature log --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 41ee938..74431b6 100644 --- a/main.c +++ b/main.c @@ -254,7 +254,7 @@ static void fill_gamma_table(uint16_t *table, uint32_t ramp_size, double rw, dou static void set_temperature(struct context *ctx) { double rw, gw, bw; calc_whitepoint(ctx->cur_temp, &rw, &gw, &bw); - fprintf(stderr, "setting temperature: %d\n", ctx->cur_temp); + fprintf(stderr, "setting temperature to %d K\n", ctx->cur_temp); struct output *output; wl_list_for_each(output, &ctx->outputs, link) {