aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-msrp.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-06 00:08:46 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-06 00:08:46 +0000
commitf21886b7af243ea9e517d8f9b5f74e8924bf7902 (patch)
tree59c6a726826c2bef9b834348bbea00a98bebf460 /epan/dissectors/packet-msrp.c
parentb99dc2ca8cc375f618d98237c98834217d77081f (diff)
More size_t casts/fixes, and string buffers.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27968 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-msrp.c')
-rw-r--r--epan/dissectors/packet-msrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-msrp.c b/epan/dissectors/packet-msrp.c
index 42a9de5eb6..6f9ece491e 100644
--- a/epan/dissectors/packet-msrp.c
+++ b/epan/dissectors/packet-msrp.c
@@ -50,7 +50,7 @@
#define TCP_PORT_MSRP 0
#define MSRP_HDR "MSRP"
-#define MSRP_HDR_LEN (strlen (MSRP_HDR))
+#define MSRP_HDR_LEN ((gint) strlen (MSRP_HDR))
/* Initialize the protocol and registered fields */
static int proto_msrp = -1;