summaryrefslogtreecommitdiffstats
path: root/stream/freesdp
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 13:39:21 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 13:39:21 +0000
commit1fe718fd3caed6eb54c7d480c6cd335b35def0b6 (patch)
tree5bb136158588c3c4870d703e2454b7da63bd13fa /stream/freesdp
parent4f6a65ef4e4d0669eeda9d6d39373885e3c47329 (diff)
downloadmpv-1fe718fd3caed6eb54c7d480c6cd335b35def0b6.tar.bz2
mpv-1fe718fd3caed6eb54c7d480c6cd335b35def0b6.tar.xz
spurious () like in ({code;}) probably is not valid C, icc 9, definitely
will not compile it, and whatever it is supposed to be good for it does not seem to be needed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21218 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/freesdp')
-rw-r--r--stream/freesdp/parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/freesdp/parser.c b/stream/freesdp/parser.c
index 0d6f97238f..5cc6823a16 100644
--- a/stream/freesdp/parser.c
+++ b/stream/freesdp/parser.c
@@ -44,7 +44,7 @@
* (not followed by a '\n') is found, returns
*/
#define NEXT_LINE(c) \
-({ \
+{ \
while ((*(c) != '\0') && (*(c) != '\r') && (*(c) != '\n')) { \
(c)++; \
} \
@@ -58,7 +58,7 @@
return FSDPE_ILLEGAL_CHARACTER; \
} \
} \
-})
+}
fsdp_error_t
fsdp_parse (const char *text_description, fsdp_description_t * dsc)