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
This commit is contained in:
Martin Kaiser 2013-03-12 20:14:45 +00:00
parent 455f5c8243
commit 7c10fd2724
1 changed files with 1 additions and 1 deletions

View File

@ -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;