aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sap.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-03-29 18:26:06 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-03-29 18:26:06 +0000
commitb666a7942e9a8e01c2aaf605f4851c05350c8e5c (patch)
tree96de522fad363580170038df86ef3eafe61fa38b /epan/dissectors/packet-sap.c
parent564e51f8ccd7c66f1701f579cc1098cd78a7aa9b (diff)
More size_t casts.
svn path=/trunk/; revision=27887
Diffstat (limited to 'epan/dissectors/packet-sap.c')
-rw-r--r--epan/dissectors/packet-sap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sap.c b/epan/dissectors/packet-sap.c
index 36d0617b01..149bbf233b 100644
--- a/epan/dissectors/packet-sap.c
+++ b/epan/dissectors/packet-sap.c
@@ -232,7 +232,7 @@ dissect_sap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
/* Do we have the optional payload type aka. MIME content specifier */
- if (tvb_strneql(tvb, offset, "v=", strlen("v="))) {
+ if (tvb_strneql(tvb, offset, "v=", (int)strlen("v="))) {
gint remaining_len;
guint32 pt_len;
int pt_string_len;