aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/sbc-ap/packet-sbc-ap-template.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-10 05:57:12 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-10 05:57:12 +0000
commitb4f63743cbc1575d380728996ffef90985de5084 (patch)
treef16087eab8ce0e2422db7897394c93a5ce1b4615 /asn1/sbc-ap/packet-sbc-ap-template.c
parentc63721eec1088e2817e5d22b045a2054caaa7b5f (diff)
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. svn path=/trunk/; revision=42544
Diffstat (limited to 'asn1/sbc-ap/packet-sbc-ap-template.c')
-rw-r--r--asn1/sbc-ap/packet-sbc-ap-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/sbc-ap/packet-sbc-ap-template.c b/asn1/sbc-ap/packet-sbc-ap-template.c
index 07fe82b768..7cab5829ac 100644
--- a/asn1/sbc-ap/packet-sbc-ap-template.c
+++ b/asn1/sbc-ap/packet-sbc-ap-template.c
@@ -141,7 +141,7 @@ dissect_sbc_ap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* create the sbc_ap protocol tree */
if (tree) {
- sbc_ap_item = proto_tree_add_item(tree, proto_sbc_ap, tvb, 0, -1, FALSE);
+ sbc_ap_item = proto_tree_add_item(tree, proto_sbc_ap, tvb, 0, -1, ENC_NA);
sbc_ap_tree = proto_item_add_subtree(sbc_ap_item, ett_sbc_ap);
dissect_SBC_AP_PDU_PDU(tvb, pinfo, sbc_ap_tree);