diff --git a/libavformat/http.c b/libavformat/http.c
index 326ed0f79696d6375be304134f3a70717491fc04..783ac6ab785e2919ffcbef2bc342cd1ab19d4f9c 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -161,7 +161,7 @@ static int http_open(URLContext *h, const char *uri, int flags)
     if (s->headers) {
         int len = strlen(s->headers);
         if (len < 2 || strcmp("\r\n", s->headers + len - 2))
-            av_log(h, AV_LOG_ERROR, "No trailing CRLF found in HTTP header.\n");
+            av_log(h, AV_LOG_WARNING, "No trailing CRLF found in HTTP header.\n");
     }
 
     return http_open_cnx(h);