summaryrefslogtreecommitdiffstats
path: root/stream/freesdp/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/freesdp/parser.c')
-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)