diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2007-01-20 18:00:24 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2007-01-20 18:00:24 +0000 |
commit | 92a3abc2920877b67162afe028cc8420ddbc18c0 (patch) | |
tree | 75c8dae48507f96b768b8e185e50bdbc9ecd4bca /common | |
parent | 84471a6158acc384fc0a2df8aea99d1b7be03b75 (diff) |
Another coding style fix
Diffstat (limited to 'common')
-rw-r--r-- | common/sdp-expat.c | 3 |
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; } } |