aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ess.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-29 21:11:33 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-29 21:11:33 +0000
commit6e51bf3ded62e4b068cac848450be1ff11769a43 (patch)
treec43214722306a6fa384387e91e2002e8ddc0aba8 /epan/dissectors/packet-ess.c
parent71d7aa4908ab36b8a03694b489426d949243db48 (diff)
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?). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34694 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ess.c')
-rw-r--r--epan/dissectors/packet-ess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ess.c b/epan/dissectors/packet-ess.c
index 44404a7e44..4c9b0a85c0 100644
--- a/epan/dissectors/packet-ess.c
+++ b/epan/dissectors/packet-ess.c
@@ -217,7 +217,7 @@ UAT_DEC_CB_DEF(ess_category_attributes, lacv, ess_category_attributes_t);
UAT_CSTRING_CB_DEF(ess_category_attributes, name, ess_category_attributes_t);
static void *
-ess_copy_cb(void *dest, const void *orig, unsigned len _U_)
+ess_copy_cb(void *dest, const void *orig, size_t len _U_)
{
ess_category_attributes_t *u = dest;
const ess_category_attributes_t *o = orig;