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
This commit is contained in:
reimar 2006-11-25 13:39:21 +00:00
parent 4f6a65ef4e
commit 1fe718fd3c
1 changed files with 2 additions and 2 deletions

View File

@ -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)