Commit 7e1e25c2 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/avio: Remove linebreak from https warning.

parent 38a6242b
...@@ -297,7 +297,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags, ...@@ -297,7 +297,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags,
*puc = NULL; *puc = NULL;
if (av_strstart(filename, "https:", NULL)) if (av_strstart(filename, "https:", NULL))
av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with " av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with "
"openssl, gnutls,\n" "openssl, gnutls "
"or securetransport enabled.\n"); "or securetransport enabled.\n");
return AVERROR_PROTOCOL_NOT_FOUND; return AVERROR_PROTOCOL_NOT_FOUND;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment