diff options
author | Sam Bingner <sam@bingner.com> | 2018-09-28 08:34:18 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-09-28 10:02:56 -1000 |
commit | 35f80ea571b726ae77bcabab4e896b85e541bf04 (patch) | |
tree | 359f51506354ea0a6f6c469d294f5adb5df6031a /methods/http.cc | |
parent | 2aa218273eb6009880e987f90d3e24b8efb04642 (diff) |
Remove errors that we don't need
Diffstat (limited to 'methods/http.cc')
-rw-r--r-- | methods/http.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/http.cc b/methods/http.cc index 4703584cf..35a7d9d3a 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -603,7 +603,7 @@ int main(int, const char *argv[]) if (UniqueID_ == NULL) if (void *lockdown = lockdown_connect()) { - UniqueID_ = lockdown_copy_value(lockdown, NULL, kLockdownUniqueDeviceIDKey); + UniqueID_ = (CFStringRef)lockdown_copy_value(lockdown, NULL, kLockdownUniqueDeviceIDKey); lockdown_disconnect(lockdown); } |