0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

file-updater: Fix format string

This commit is contained in:
Richard Stanway 2016-04-21 02:06:23 +02:00
parent f7fce1c802
commit 5ddc3d258e
No known key found for this signature in database
GPG Key ID: AAC1E5265D71B3FD

View File

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