aboutsummaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-16 04:05:39 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-16 04:05:39 +0000
commite648060f0f307b2df23902338fa5d22c4d490465 (patch)
tree1f4158ed7e68052c732725d2535039b9523e38de /print.c
parent17f0d877faff64832b2a93f24d21b873fe59919e (diff)
Fix the last(?) of the Win64 compilation problems.
svn path=/trunk/; revision=28065
Diffstat (limited to 'print.c')
-rw-r--r--print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.c b/print.c
index d72a0dbfee..580ba1ff88 100644
--- a/print.c
+++ b/print.c
@@ -260,7 +260,7 @@ proto_tree_write_node_pdml(proto_node *node, gpointer data)
const gchar *label_ptr;
gchar label_str[ITEM_LABEL_LENGTH];
char *dfilter_string;
- int chop_len;
+ size_t chop_len;
int i;
/* Will wrap up top-level field items inside a fake protocol wrapper to
@@ -1506,7 +1506,7 @@ const gchar* get_node_field_value(field_info* fi, epan_dissect_t* edt)
else {
/* Normal protocols and fields */
gchar *dfilter_string;
- gint chop_len;
+ size_t chop_len;
switch (fi->hfinfo->type)
{