aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter
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/dfilter
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/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;