diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-10 10:47:46 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-10 10:47:46 -0500 |
commit | c920c30defaed19690bfe913b28a9092478a2645 (patch) | |
tree | acfda5af07eabb9abed91efe1382f732d5626c51 /src/redshift.c | |
parent | redshift: Add print_location() function (diff) | |
parent | fixes jonls/redshift#157 introduced by jonls/redshift@f9c2a1568c308ec69970662a8f5ceb8726e8d8cc (diff) | |
download | redshift-ng-c920c30defaed19690bfe913b28a9092478a2645.tar.gz redshift-ng-c920c30defaed19690bfe913b28a9092478a2645.tar.bz2 redshift-ng-c920c30defaed19690bfe913b28a9092478a2645.tar.xz |
Merge pull request #159 from christian-burger/master
fixes #157: it was a tiny oversight during refactoring
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 4 |
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; } |