Diff between 0de4b9f71eb9e01ee972755cf3444592706356c7 and 0b52ecca60ea2002a3b3236f32543210e92c0e95
Changed Files
| File | Additions | Deletions | Status |
| lib/sdp.c | +1 | -1 | modified |
Full Patch
diff --git a/lib/sdp.c b/lib/sdp.c
index e260a5a..411a95b 100644
--- a/lib/sdp.c
+++ b/lib/sdp.c
@@ -506,7 +506,7 @@ sdp_data_t *sdp_seq_alloc_with_length(void **dtds, void **values, int *length,
for (i = 0; i < len; i++) {
sdp_data_t *data;
- int8_t dtd = *(uint8_t *) dtds[i];
+ uint8_t dtd = *(uint8_t *) dtds[i];
if (dtd >= SDP_SEQ8 && dtd <= SDP_ALT32)
data = (sdp_data_t *) values[i];