aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-10-12 15:47:22 -0700
committerGitHub <noreply@github.com>2017-10-12 15:47:22 -0700
commitf4ece7c8c1ab1e8b37679fc280f9d2495e0c893c (patch)
treec05ea08369b467ecdb685d3945e4cd7969f67492 /src
parentMerge pull request #532 from jonls/fix-time-based (diff)
parentFix bug where error code was not handled (diff)
downloadredshift-ng-f4ece7c8c1ab1e8b37679fc280f9d2495e0c893c.tar.gz
redshift-ng-f4ece7c8c1ab1e8b37679fc280f9d2495e0c893c.tar.bz2
redshift-ng-f4ece7c8c1ab1e8b37679fc280f9d2495e0c893c.tar.xz
Merge pull request #533 from jonls/fix-error-handling
Fix bug where error code was not handled
Diffstat (limited to 'src')
-rw-r--r--src/redshift.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redshift.c b/src/redshift.c
index 4774b7e..f46853b 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -1249,7 +1249,7 @@ run_continual_mode(const location_provider_t *provider,
information. */
location_t new_loc;
int new_available;
- provider->handle(
+ r = provider->handle(
location_state, &new_loc,
&new_available);
if (r < 0) {