aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-afs.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-03-12 20:14:45 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-03-12 20:14:45 +0000
commit7c10fd27244aab5d38969618bdad3ae6be2cc0cc (patch)
tree40570e22ac426212bc829588ab98e8bcbb124674 /epan/dissectors/packet-afs.c
parent455f5c8243c16c266150f4fbb0520b685e2cbca8 (diff)
use correct data type in the cast
this fixes packet-afs.c: In function 'dissect_afs': packet-afs.c:1539:35: error: expected expression before ')' token svn path=/trunk/; revision=48266
Diffstat (limited to 'epan/dissectors/packet-afs.c')
-rw-r--r--epan/dissectors/packet-afs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-afs.c b/epan/dissectors/packet-afs.c
index c1f080a43f..e36836e60d 100644
--- a/epan/dissectors/packet-afs.c
+++ b/epan/dissectors/packet-afs.c
@@ -1536,7 +1536,7 @@ afs_init_protocol(void)
static void
dissect_afs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- struct rxinfo *rxinfo = (rxinfo *)pinfo->private_data;
+ struct rxinfo *rxinfo = (struct rxinfo *)pinfo->private_data;
int reply = 0;
conversation_t *conversation;
struct afs_request_key request_key, *new_request_key;