summaryrefslogtreecommitdiffstats
path: root/common/sdp-xml.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-01-29 17:32:08 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-01-29 17:32:30 +0100
commitbbbb1adae92d53840ef28ec955a388d2d2bf7c0a (patch)
tree72adbdafd28c2741015685a65c3c2ec08a337289 /common/sdp-xml.c
parent97b1491ba3c93fa7d44b22f72e2be1eae6c96496 (diff)
Fix signed/unsigned integer comparison for helpers
Diffstat (limited to 'common/sdp-xml.c')
-rw-r--r--common/sdp-xml.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/sdp-xml.c b/common/sdp-xml.c
index 385e9019..0403dcdd 100644
--- a/common/sdp-xml.c
+++ b/common/sdp-xml.c
@@ -411,8 +411,7 @@ void convert_sdp_record_to_xml(sdp_record_t *rec,
static sdp_data_t *sdp_xml_parse_uuid128(const char *data)
{
uint128_t val;
- int i;
- int j;
+ unsigned int i, j;
char buf[3];