0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

file-updater: Fix warning parameter

The parameter was being passed as a pointer instead of being
dereferenced
This commit is contained in:
jp9000 2016-04-24 12:59:55 -07:00
parent 8f3289fc4d
commit 45015db9d8

View File

@ -142,7 +142,7 @@ static bool do_http_request(struct update_info *info, const char *url,
if (*response_code >= 400) {
warn("Remote update of URL \"%s\" failed: HTTP/%ld", url,
response_code);
*response_code);
return false;
}