diff stream/freesdp/parser.c @ 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 64d82a45a05d
children f9a95c04844a
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)