aboutsummaryrefslogtreecommitdiffstats
path: root/epan/oids.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/oids.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/oids.c')
-rw-r--r--epan/oids.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/oids.c b/epan/oids.c
index 2d1a3cc01c..7da2e5ccb5 100644
--- a/epan/oids.c
+++ b/epan/oids.c
@@ -234,7 +234,7 @@ static void smi_error_handler(char *path, int line, int severity, char *msg, cha
}
-static void* smi_mod_copy_cb(void* dest, const void* orig, unsigned len _U_) {
+static void* smi_mod_copy_cb(void* dest, const void* orig, size_t len _U_) {
const smi_module_t* m = orig;
smi_module_t* d = dest;