From 5daa45fa01129786f919e2fc95231e61e551e7fa Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Fri, 10 Oct 2025 17:46:30 +0200 Subject: [PATCH] avformat: rtsp: fix log message formatting --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index fa227ada62..94a2f34141 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1499,7 +1499,7 @@ retry: goto retry; if (reply->status_code > 400){ - av_log(s, AV_LOG_ERROR, "method %s failed: %d%s\n", + av_log(s, AV_LOG_ERROR, "method %s failed: %d (%s)\n", method, reply->status_code, reply->reason);