aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-security.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-10-29 21:11:33 +0000
committerGuy Harris <guy@alum.mit.edu>2010-10-29 21:11:33 +0000
commit17d4d51b7df38f8e352009975facafac55e1adb0 (patch)
treec43214722306a6fa384387e91e2002e8ddc0aba8 /epan/dissectors/packet-zbee-security.c
parent04b977c4e691b9011122c9d805583153043a3cab (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?). svn path=/trunk/; revision=34694
Diffstat (limited to 'epan/dissectors/packet-zbee-security.c')
-rw-r--r--epan/dissectors/packet-zbee-security.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-zbee-security.c b/epan/dissectors/packet-zbee-security.c
index 5c00ac1f7f..b998316668 100644
--- a/epan/dissectors/packet-zbee-security.c
+++ b/epan/dissectors/packet-zbee-security.c
@@ -142,7 +142,7 @@ typedef struct _uat_key_record_t {
static uat_key_record_t *uat_key_records = NULL;
static guint num_uat_key_records = 0;
-static void* uat_key_record_copy_cb(void* n, const void* o, unsigned siz _U_) {
+static void* uat_key_record_copy_cb(void* n, const void* o, size_t siz _U_) {
uat_key_record_t* new_key = (uat_key_record_t *)n;
const uat_key_record_t* old_key = (uat_key_record_t *)o;