aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-09-23 01:14:44 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-09-23 01:14:44 +0000
commit7cdf98c245f5e5d126ad614d64a1048356e9f1da (patch)
tree17a433c686d70f7e212b57f63de6823ca7d66ff5 /epan/epan.c
parentf4f8bb343e78973c0be6aa2e35ea4bfb78bf325e (diff)
Use gsize (size_t) in a couple of places to make the Win64 build happy.
svn path=/trunk/; revision=34191
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 236ea20b92..e68f253411 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -235,9 +235,9 @@ epan_dissect_prime_dfilter(epan_dissect_t *edt, const dfilter_t* dfcode)
/* ----------------------- */
const gchar *
epan_custom_set(epan_dissect_t *edt, int field_id,
- gint occurrence,
- gchar *result,
- gchar *expr, const int size )
+ gint occurrence,
+ gchar *result,
+ gchar *expr, const gsize size )
{
return proto_custom_set(edt->tree, field_id, occurrence, result, expr, size);
}