aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Burger <christian@krikkel.de>2015-01-10 12:32:04 +0100
committerChristian Burger <christian@krikkel.de>2015-01-10 12:32:04 +0100
commit8dbeda906aec95517c949665e02bf4da574ccc59 (patch)
treeacfda5af07eabb9abed91efe1382f732d5626c51
parentredshift: Add print_location() function (diff)
downloadredshift-ng-8dbeda906aec95517c949665e02bf4da574ccc59.tar.gz
redshift-ng-8dbeda906aec95517c949665e02bf4da574ccc59.tar.bz2
redshift-ng-8dbeda906aec95517c949665e02bf4da574ccc59.tar.xz
fixes jonls/redshift#157 introduced by jonls/redshift@f9c2a1568c308ec69970662a8f5ceb8726e8d8cc
-rw-r--r--src/redshift.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/redshift.c b/src/redshift.c
index 403d04d..fb90bb0 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -1006,7 +1006,7 @@ run_continual_mode(const location_t *loc,
/* Adjust temperature */
if (!disabled || short_trans_delta || set_adjustments) {
- r = method->set_temperature(&state, &interp);
+ r = method->set_temperature(state, &interp);
if (r < 0) {
fputs(_("Temperature adjustment"
" failed.\n"), stderr);
@@ -1028,7 +1028,7 @@ run_continual_mode(const location_t *loc,
}
/* Restore saved gamma ramps */
- method->restore(&state);
+ method->restore(state);
return 0;
}