From 17d4d51b7df38f8e352009975facafac55e1adb0 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 29 Oct 2010 21:11:33 +0000 Subject: Make the third argument to a UAT copy callback a size_t (not that any of the callbacks we have use that argument - is it really needed?). svn path=/trunk/; revision=34694 --- epan/dissectors/packet-user_encap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-user_encap.c') diff --git a/epan/dissectors/packet-user_encap.c b/epan/dissectors/packet-user_encap.c index 7e2482d097..7b7d93d3fc 100644 --- a/epan/dissectors/packet-user_encap.c +++ b/epan/dissectors/packet-user_encap.c @@ -127,7 +127,7 @@ static void dissect_user(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree) { } } -static void* user_copy_cb(void* dest, const void* orig, unsigned len _U_) +static void* user_copy_cb(void* dest, const void* orig, size_t len _U_) { const user_encap_t *o = orig; user_encap_t *d = dest; -- cgit v1.2.3