diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2007-03-21 10:22:22 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2007-03-21 10:22:22 +0000 |
commit | 8920a7e7f23e2a78edb3b6274f7aae0d999c721d (patch) | |
tree | 939992cd91a44f994cb6d6ed4aa693c29373443a /asn1/gsmmap | |
parent | 09efa21b94fe40e631f358f1995e51802949ba31 (diff) | |
download | wireshark-8920a7e7f23e2a78edb3b6274f7aae0d999c721d.tar.gz wireshark-8920a7e7f23e2a78edb3b6274f7aae0d999c721d.tar.bz2 wireshark-8920a7e7f23e2a78edb3b6274f7aae0d999c721d.zip |
change the signature that asn2wrs generates for functions to marm all parameters as _U_
to reduce the number of compiler warnings.
update some template and cnf files to use _U_ as well
svn path=/trunk/; revision=21088
Diffstat (limited to 'asn1/gsmmap')
-rw-r--r-- | asn1/gsmmap/packet-gsm_map-template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/gsmmap/packet-gsm_map-template.c b/asn1/gsmmap/packet-gsm_map-template.c index cf82aa65fe..eec4e30a20 100644 --- a/asn1/gsmmap/packet-gsm_map-template.c +++ b/asn1/gsmmap/packet-gsm_map-template.c @@ -257,7 +257,7 @@ gsm_map_calc_bitrate(guint8 value){ } static void -dissect_gsm_map_ext_qos_subscribed(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree){ +dissect_gsm_map_ext_qos_subscribed(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree _U_){ int offset = 0; proto_item *item; proto_tree *subtree; @@ -395,7 +395,7 @@ static const value_string dir_of_alt_vals[] = { void -dissect_geographical_description(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree){ +dissect_geographical_description(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree){ proto_item *lat_item, *long_item, *major_item, *minor_item, *alt_item; /*proto_tree *subtree; */ @@ -1527,7 +1527,7 @@ static guint8 gsmmap_pdu_type = 0; static guint8 gsm_map_pdu_size = 0; static int -dissect_gsm_map_GSMMAPPDU(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo , proto_tree *tree, int hf_index) { +dissect_gsm_map_GSMMAPPDU(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo , proto_tree *tree, int hf_index _U_) { char *version_ptr; struct tcap_private_t * p_private_tcap; |