From: Ronald S. Bultje Date: Sat, 21 Mar 2009 21:00:51 +0000 (+0000) Subject: Reindent something where a if () --> { <-- is on a newline rather than on the X-Git-Tag: v0.6~5156 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=78f731de92414bf52405e74d69848b63d67ea66a;p=coroid%2Fffmpeg_saccubus.git Reindent something where a if () --> { <-- is on a newline rather than on the same line as the if. See summary in "[PATCH] rtsp.c small cleanups" thread on mailinglist. Originally committed as revision 18127 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5100c978e..cd5c3d859 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -243,8 +243,7 @@ static const AttrNameMap attr_names[]= int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size) { skip_spaces(p); - if(**p) - { + if(**p) { get_word_sep(attr, attr_size, "=", p); if (**p == '=') (*p)++;