aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
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.h
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.h')
-rw-r--r--epan/epan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 43501d2b10..bc1d44939a 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -91,7 +91,7 @@ epan_get_version(void);
epan_dissect_t*
epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const gboolean proto_tree_visible);
-/** get a new single packet dissection
+/** get a new single packet dissection
* should be freed using epan_dissect_free() after packet dissection completed
*/
epan_dissect_t*
@@ -125,7 +125,7 @@ epan_dissect_free(epan_dissect_t* edt);
/** Sets custom column */
const gchar *
epan_custom_set(epan_dissect_t *edt, int id, gint occurrence,
- gchar *result, gchar *expr, const int size);
+ gchar *result, gchar *expr, const gsize size);
/**
* Get compile-time information for libraries used by libwireshark.