aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ymsg.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-03-28 07:06:39 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-03-28 07:06:39 +0000
commit85a464c98012ebad9a612dbd76b4662442f1821b (patch)
tree54f5b092d39996c74a7ddc7acb7feb6ae3834454 /epan/dissectors/packet-ymsg.c
parent4b0b2c289446f1073dfc7fbac39a08e3942e3b02 (diff)
Fix a bunch of warnings, add svn:keywords Id and svn:eol-style native
to packet-iuup.c. svn path=/trunk/; revision=21244
Diffstat (limited to 'epan/dissectors/packet-ymsg.c')
-rw-r--r--epan/dissectors/packet-ymsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ymsg.c b/epan/dissectors/packet-ymsg.c
index 1c2420b926..4005508aca 100644
--- a/epan/dissectors/packet-ymsg.c
+++ b/epan/dissectors/packet-ymsg.c
@@ -337,7 +337,7 @@ static gboolean
dissect_ymsg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- if (tvb_memeql(tvb, 0, "YMSG", 4) == -1) {
+ if (tvb_memeql(tvb, 0, (guint8*)"YMSG", 4) == -1) {
/* Not a Yahoo Messenger packet. */
return FALSE;
}