aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http.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-http.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-http.c')
-rw-r--r--epan/dissectors/packet-http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-http.c b/epan/dissectors/packet-http.c
index 3f5e14236e..dbc443225c 100644
--- a/epan/dissectors/packet-http.c
+++ b/epan/dissectors/packet-http.c
@@ -147,7 +147,7 @@ header_fields_update_cb(void* r, const char** err)
}
static void *
-header_fields_copy_cb(void* n, const void* o, unsigned siz _U_)
+header_fields_copy_cb(void* n, const void* o, size_t siz _U_)
{
header_field_t* new_rec = n;
const header_field_t* old_rec = o;