Get rid of remaining Booleans-as-encoding-arguments in
authorGuy Harris <guy@alum.mit.edu>
Thu, 10 May 2012 05:57:12 +0000 (05:57 -0000)
committerGuy Harris <guy@alum.mit.edu>
Thu, 10 May 2012 05:57:12 +0000 (05:57 -0000)
proto_tree_add_item() calls.

svn path=/trunk/; revision=42544

asn1/sbc-ap/packet-sbc-ap-template.c
epan/dissectors/packet-sbc-ap.c

index 07fe82b76884da7cf4c7bd929035251290a2804c..7cab5829acb0bbc64c66bd13a64f776e422394ba 100644 (file)
@@ -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);
index 015f05363d11f968400ff35aa471326286ce1206..89311f628643677eaf8b3d3c805a968cbcb71aa2 100644 (file)
@@ -1183,7 +1183,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);