[FFmpeg-cvslog] r18127 - trunk/libavformat/rtsp.c
rbultje
subversion
Sat Mar 21 22:00:51 CET 2009
Author: rbultje
Date: Sat Mar 21 22:00:51 2009
New Revision: 18127
Log:
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.
Modified:
trunk/libavformat/rtsp.c
Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c Sat Mar 21 21:59:59 2009 (r18126)
+++ trunk/libavformat/rtsp.c Sat Mar 21 22:00:51 2009 (r18127)
@@ -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)++;
More information about the ffmpeg-cvslog
mailing list