Oops, forgot to add packet-aprs.c to dissector source lists.

Fix warnings in packet-aprs.c.

svn path=/trunk/; revision=44231
This commit is contained in:
Guy Harris 2012-08-02 23:53:38 +00:00
parent bafaa14059
commit 1b876c36f1
3 changed files with 6 additions and 4 deletions

View File

@ -342,6 +342,7 @@ set(DISSECTOR_SRC
dissectors/packet-ap1394.c
dissectors/packet-app-pkix-cert.c
dissectors/packet-applemidi.c
dissectors/packet-aprs.c
dissectors/packet-arcnet.c
dissectors/packet-armagetronad.c
dissectors/packet-arp.c

View File

@ -262,6 +262,7 @@ DISSECTOR_SRC = \
packet-ap1394.c \
packet-app-pkix-cert.c \
packet-applemidi.c \
packet-aprs.c \
packet-arcnet.c \
packet-armagetronad.c \
packet-arp.c \

View File

@ -622,10 +622,10 @@ dissect_aprs_compressed_msg( tvbuff_t *tvb,
}
static mic_e_dst_code_table_s *
static const mic_e_dst_code_table_s *
dst_code_lookup( guint8 ch )
{
int index;
guint index;
index = 0;
while ( index < ( sizeof( dst_code ) / sizeof( mic_e_dst_code_table_s ) )
@ -685,7 +685,7 @@ dissect_mic_e( tvbuff_t *tvb,
int cse;
int spd;
guint8 ssid;
mic_e_dst_code_table_s *dst_code_entry;
const mic_e_dst_code_table_s *dst_code_entry;
/*data_len = 8;*/
data_len = tvb_length_remaining( tvb, offset );
@ -1352,7 +1352,7 @@ dissect_aprs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
if ( parent_tree )
{
/* create display subtree for the protocol */
ti = proto_tree_add_protocol_format( parent_tree , proto_aprs, tvb, 0, tvb_length_remaining( tvb, offset ), info_buffer );
ti = proto_tree_add_protocol_format( parent_tree , proto_aprs, tvb, 0, tvb_length_remaining( tvb, offset ), "%s", info_buffer );
aprs_tree = proto_item_add_subtree( ti, ett_aprs );
offset = 0;