diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 14:13:42 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 14:13:42 -0500 |
commit | 7cb1af0773176b9852f9870198d095d347aa8a2c (patch) | |
tree | 7b9b4e75514fef57df8688252299a67dbaa61357 /src/location-corelocation.m | |
parent | systemtime: Add function wrapping platform sleep function (diff) | |
download | redshift-ng-7cb1af0773176b9852f9870198d095d347aa8a2c.tar.gz redshift-ng-7cb1af0773176b9852f9870198d095d347aa8a2c.tar.bz2 redshift-ng-7cb1af0773176b9852f9870198d095d347aa8a2c.tar.xz |
corelocation: Fix missing space character in string
Diffstat (limited to '')
-rw-r--r-- | src/location-corelocation.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/location-corelocation.m b/src/location-corelocation.m index 626949c..cc873bb 100644 --- a/src/location-corelocation.m +++ b/src/location-corelocation.m @@ -56,7 +56,7 @@ if (authStatus != kCLAuthorizationStatusNotDetermined && authStatus != kCLAuthorizationStatusAuthorized) { fputs(_("Not authorized to obtain location" - "from CoreLocation.\n"), stderr); + " from CoreLocation.\n"), stderr); CFRunLoopStop(CFRunLoopGetCurrent()); } |