aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter
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/dfilter
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/dfilter')
-rw-r--r--epan/dfilter/dfilter-macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dfilter/dfilter-macro.c b/epan/dfilter/dfilter-macro.c
index 5b5a4aed99..40d1f4193e 100644
--- a/epan/dfilter/dfilter-macro.c
+++ b/epan/dfilter/dfilter-macro.c
@@ -501,7 +501,7 @@ static void macro_free(void* r) {
g_free(m->args_pos);
}
-static void* macro_copy(void* dest, const void* orig, unsigned len _U_) {
+static void* macro_copy(void* dest, const void* orig, size_t len _U_) {
dfilter_macro_t* d = dest;
const dfilter_macro_t* m = orig;