diff options
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/src/redshift.c b/src/redshift.c index ca8e66b..be97912 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -187,8 +187,8 @@ print_location(const struct location *location) The string following each number is an abreviation for north, source, east or west (N, S, E, W). */ printf(_("Location: %.2f %s, %.2f %s\n"), - fabs(location->lat), location->lat >= 0.f ? north : south, - fabs(location->lon), location->lon >= 0.f ? east : west); + fabs(location->lat), location->lat >= 0.0 ? north : south, + fabs(location->lon), location->lon >= 0.0 ? east : west); } /* Interpolate color setting structs given alpha. */ @@ -233,10 +233,10 @@ color_setting_diff_is_major( const struct color_setting *second) { return (abs(first->temperature - second->temperature) > 25 || - fabsf(first->brightness - second->brightness) > 0.1 || - fabsf(first->gamma[0] - second->gamma[0]) > 0.1 || - fabsf(first->gamma[1] - second->gamma[1]) > 0.1 || - fabsf(first->gamma[2] - second->gamma[2]) > 0.1); + fabs(first->brightness - second->brightness) > 0.1 || + fabs(first->gamma[0] - second->gamma[0]) > 0.1 || + fabs(first->gamma[1] - second->gamma[1]) > 0.1 || + fabs(first->gamma[2] - second->gamma[2]) > 0.1); } /* Reset color setting to default values. */ @@ -424,14 +424,11 @@ method_try_start(const struct gamma_method *method, GAMMA_STATE **state, /* Check whether gamma is within allowed levels. */ static int -gamma_is_valid(const float gamma[3]) +gamma_is_valid(const double gamma[3]) { - return !(gamma[0] < MIN_GAMMA || - gamma[0] > MAX_GAMMA || - gamma[1] < MIN_GAMMA || - gamma[1] > MAX_GAMMA || - gamma[2] < MIN_GAMMA || - gamma[2] > MAX_GAMMA); + return !(gamma[0] < MIN_GAMMA || gamma[0] > MAX_GAMMA || + gamma[1] < MIN_GAMMA || gamma[1] > MAX_GAMMA || + gamma[2] < MIN_GAMMA || gamma[2] > MAX_GAMMA); } /* Check whether location is valid. |