Commit 0b1bab9f authored by rbultje's avatar rbultje

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.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18127 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f9098373
...@@ -243,8 +243,7 @@ static const AttrNameMap attr_names[]= ...@@ -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) int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size)
{ {
skip_spaces(p); skip_spaces(p);
if(**p) if(**p) {
{
get_word_sep(attr, attr_size, "=", p); get_word_sep(attr, attr_size, "=", p);
if (**p == '=') if (**p == '=')
(*p)++; (*p)++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment