diff options
author | Marvin Scholz <epirat07@gmail.com> | 2025-07-08 16:11:53 +0200 |
---|---|---|
committer | Marvin Scholz <epirat07@gmail.com> | 2025-07-11 16:32:05 +0200 |
commit | c425951c0535d939c94edd5bc4065c6e5293348c (patch) | |
tree | 8d05852e11d074abcd6c4558ca2f982faf2eeac1 | |
parent | fadadb56e665521cb6e11f8dd13a2a0a83927f5c (diff) | |
download | ffmpeg-c425951c0535d939c94edd5bc4065c6e5293348c.tar.gz |
avformat/rtsp: fix misleading indentation
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 0810c56a8b..cde4447c8e 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -602,8 +602,8 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, if (proto[0] == '\0') { /* relative control URL */ if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/') - av_strlcat(rtsp_st->control_url, "/", - sizeof(rtsp_st->control_url)); + av_strlcat(rtsp_st->control_url, "/", + sizeof(rtsp_st->control_url)); av_strlcat(rtsp_st->control_url, p, sizeof(rtsp_st->control_url)); } else |