1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

dissector_add() was depreciated and replaced with dissector_add_uint()

This commit is contained in:
Kevin Finisterre 2015-04-28 14:49:30 -04:00
parent 25a91bc5fc
commit d591ec7117

View File

@ -108,5 +108,5 @@ void proto_reg_handoff_op_uavobjects_$(NAMELC)(void)
uavo_handle = new_create_dissector_handle(dissect_uavo, proto_uavo);
/* Bind this protocol to its UAV ObjID in UAVTalk */
dissector_add("uavtalk.objid", $(OBJIDHEX), uavo_handle);
dissector_add_uint("uavtalk.objid", $(OBJIDHEX), uavo_handle);
}