aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btl2cap.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-14 08:29:29 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-14 08:29:29 +0000
commit1e3a82cf42f53f0f578bf4b429a19d6aa7ced09d (patch)
tree6dd08df9d5efc4d94faa451f8f0eec242166f25a /epan/dissectors/packet-btl2cap.c
parent377944a39b9a28c95c889a550e9c1395f5082f3e (diff)
rename some structures and defines from the se_tree to the emem_tree prefix
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18894 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-btl2cap.c')
-rw-r--r--epan/dissectors/packet-btl2cap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btl2cap.c b/epan/dissectors/packet-btl2cap.c
index e5e4ce4b20..036c273aab 100644
--- a/epan/dissectors/packet-btl2cap.c
+++ b/epan/dissectors/packet-btl2cap.c
@@ -87,7 +87,7 @@ dissector_table_t l2cap_psm_dissector_table;
* The same table is used both for SCID and DCID.
* For received CIDs we mask the cid with 0x8000 in this table
*/
-static se_tree_t *cid_to_psm_table = NULL;
+static emem_tree_t *cid_to_psm_table = NULL;
typedef struct _psm_data_t {
guint16 psm;
} psm_data_t;
@@ -848,7 +848,7 @@ proto_register_btl2cap(void)
proto_register_field_array(proto_btl2cap, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
- cid_to_psm_table=se_tree_create(SE_TREE_TYPE_RED_BLACK, "btl2cap scid to psm");
+ cid_to_psm_table=se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "btl2cap scid to psm");
}