diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-21 23:46:04 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-21 23:46:04 +0100 |
commit | a091370e612b79452ac882e299d0e85154a64b59 (patch) | |
tree | e3af7375e90955609424ebe19442ddb3d53d6e09 /src/location.c | |
parent | Remove dependency on libsimple since it's not portable (diff) | |
download | redshift-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.c | 5 |
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 |