aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-k12.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-k12.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-k12.c')
-rw-r--r--epan/dissectors/packet-k12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-k12.c b/epan/dissectors/packet-k12.c
index b5f57027c9..5a75fadc88 100644
--- a/epan/dissectors/packet-k12.c
+++ b/epan/dissectors/packet-k12.c
@@ -332,7 +332,7 @@ k12_update_cb(void* r, const char** err)
}
static void*
-k12_copy_cb(void* dest, const void* orig, unsigned len _U_)
+k12_copy_cb(void* dest, const void* orig, size_t len _U_)
{
k12_handles_t* d = dest;
const k12_handles_t* o = orig;