summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/sdp-expat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/sdp-expat.c b/common/sdp-expat.c
index 7c8867a5..8c68278e 100644
--- a/common/sdp-expat.c
+++ b/common/sdp-expat.c
@@ -156,8 +156,7 @@ static void convert_xml_to_sdp_start(void *data, const char *el, const char **at
/* Get the ID */
for (i = 0; attr[i]; i += 1) {
if (!strcmp(attr[i], "id")) {
- context->attrId =
- strtol(attr[i + 1], 0, 0);
+ context->attrId = strtol(attr[i + 1], 0, 0);
break;
}
}