diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-09-18 13:18:47 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-09-18 13:18:47 +0000 |
commit | ba93ea6d3e6ce95c9bc49cd69474b3b3f653babe (patch) | |
tree | 9abe2b3275d3968bcea70b4f3da5ee696a2d35aa /libavformat | |
parent | 94f3c0e52f89934237ca6abfcadc07e676057edc (diff) | |
download | ffmpeg-ba93ea6d3e6ce95c9bc49cd69474b3b3f653babe.tar.gz |
Unscrewup indentation (pointed out by Diego).
Originally committed as revision 19910 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-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 9b2c934e63..ddf51ed746 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -858,8 +858,8 @@ static void rtsp_send_cmd_async (AVFormatContext *s, } if (rt->auth_b64) av_strlcatf(buf, sizeof(buf), - "Authorization: Basic %s\r\n", - rt->auth_b64); + "Authorization: Basic %s\r\n", + rt->auth_b64); av_strlcat(buf, "\r\n", sizeof(buf)); dprintf(s, "Sending:\n%s--\n", buf); |