From f0b7fc1ecb80cb34a45e60d07e9c53745b251686 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 20:02:05 +0100 Subject: Just use double, no mixing in float MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/options.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/options.c') diff --git a/src/options.c b/src/options.c index bbc6435..0f94c3c 100644 --- a/src/options.c +++ b/src/options.c @@ -37,7 +37,7 @@ or two values separated by a colon. */ static void parse_brightness_string( - const char *str, float *bright_day, float *bright_night) + const char *str, double *bright_day, double *bright_night) { char *s = strchr(str, ':'); if (s == NULL) { @@ -53,12 +53,12 @@ parse_brightness_string( /* A gamma string contains either one floating point value, or three values separated by colon. */ static int -parse_gamma_string(const char *str, float gamma[]) +parse_gamma_string(const char *str, double gamma[3]) { char *s = strchr(str, ':'); if (s == NULL) { /* Use value for all channels */ - float g = atof(str); + double g = atof(str); gamma[0] = gamma[1] = gamma[2] = g; } else { /* Parse separate value for each channel */ -- cgit v1.2.3-70-g09d2