Mercurial > mplayer.hg
changeset 21202:8ed444639678
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.
author | reimar |
---|---|
date | Sat, 25 Nov 2006 13:39:21 +0000 |
parents | 2c1b7fe05973 |
children | 235a8e71ed6f |
files | stream/freesdp/parser.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/freesdp/parser.c Sat Nov 25 13:34:55 2006 +0000 +++ b/stream/freesdp/parser.c Sat Nov 25 13:39:21 2006 +0000 @@ -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)