# HG changeset patch # User reimar # Date 1164461961 0 # Node ID 8ed444639678f80391f96d00e6d5ba77ca16ae8d # Parent 2c1b7fe0597303699b267934f18da923f12c27e7 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. diff -r 2c1b7fe05973 -r 8ed444639678 stream/freesdp/parser.c --- 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)