aboutsummaryrefslogtreecommitdiffstats
path: root/src/location.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-21 23:46:04 +0100
committerMattias Andrée <m@maandree.se>2025-03-21 23:46:04 +0100
commita091370e612b79452ac882e299d0e85154a64b59 (patch)
treee3af7375e90955609424ebe19442ddb3d53d6e09 /src/location.c
parentRemove dependency on libsimple since it's not portable (diff)
downloadredshift-ng-a091370e612b79452ac882e299d0e85154a64b59.tar.gz
redshift-ng-a091370e612b79452ac882e299d0e85154a64b59.tar.bz2
redshift-ng-a091370e612b79452ac882e299d0e85154a64b59.tar.xz
misc stuff
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/location.c')
-rw-r--r--src/location.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/location.c b/src/location.c
index a70be8c..bd852a1 100644
--- a/src/location.c
+++ b/src/location.c
@@ -168,7 +168,10 @@ get_location(const struct location_provider *provider, LOCATION_STATE *state, in
if (provider->fetch(state, location_out, &available) < 0)
return -1;
- } while (!available);
+ } while (!available && !exiting);
+
+ if (exiting)
+ eprintf(_("Terminated by user."));
return 1;
#endif