aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat.h
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/uat.h
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/uat.h')
-rw-r--r--epan/uat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/uat.h b/epan/uat.h
index f5523aea92..4d85f98d04 100644
--- a/epan/uat.h
+++ b/epan/uat.h
@@ -82,7 +82,7 @@ typedef void (*uat_post_update_cb_t)(void);
* optional, memcpy will be used if not given
* copy(dest,orig,len)
*/
-typedef void* (*uat_copy_cb_t)(void*, const void*, unsigned);
+typedef void* (*uat_copy_cb_t)(void*, const void*, size_t);
/*
*