summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-mint.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-mint.c')
-rw-r--r--epan/dissectors/packet-mint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mint.c b/epan/dissectors/packet-mint.c
index 8c3b34c68a..32cc2d2f4f 100644
--- a/epan/dissectors/packet-mint.c
+++ b/epan/dissectors/packet-mint.c
@@ -284,7 +284,7 @@ dissect_eth_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *mint_tree,
tvbuff_t *eth_tvb;
#ifdef MINT_DEVELOPMENT
- col_set_writable(pinfo->cinfo, FALSE);
+ col_set_writable(pinfo->cinfo, -1, FALSE);
#endif
eth_tvb = tvb_new_subset_length(tvb, offset, length);
@@ -297,7 +297,7 @@ dissect_eth_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *mint_tree,
offset += length;
#ifdef MINT_DEVELOPMENT
- col_set_writable(pinfo->cinfo, TRUE);
+ col_set_writable(pinfo->cinfo, -1, TRUE);
#endif
return offset;
}