diff options
author | Bill Meier <wmeier@newsguy.com> | 2012-12-03 22:27:46 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2012-12-03 22:27:46 +0000 |
commit | 52e47754f12d5eaf6f5f3b62797cad7489504264 (patch) | |
tree | 673c57be702dc76eaf8c0c3bfd45bf1a00fb057d /asn1/t124 | |
parent | 727ed6838137a0825e65c50a0073304a60a17974 (diff) | |
download | wireshark-52e47754f12d5eaf6f5f3b62797cad7489504264.tar.gz wireshark-52e47754f12d5eaf6f5f3b62797cad7489504264.tar.bz2 wireshark-52e47754f12d5eaf6f5f3b62797cad7489504264.zip |
Fix [-Wshadow] warnings.
svn path=/trunk/; revision=46357
Diffstat (limited to 'asn1/t124')
-rw-r--r-- | asn1/t124/packet-t124-template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/t124/packet-t124-template.c b/asn1/t124/packet-t124-template.c index a68be5c62f..54c4961356 100644 --- a/asn1/t124/packet-t124-template.c +++ b/asn1/t124/packet-t124-template.c @@ -83,7 +83,7 @@ register_t124_ns_dissector(const char *nsKey, dissector_t dissector, int proto) dissector_add_string("t124.ns", nsKey, dissector_handle); } -void register_t124_sd_dissector(packet_info *pinfo _U_, guint32 channelId, dissector_t dissector, int proto) +void register_t124_sd_dissector(packet_info *pinfo _U_, guint32 channelId_param, dissector_t dissector, int proto) { /* XXX: we should keep the sub-dissectors list per conversation as the same channels may be used. @@ -93,7 +93,7 @@ void register_t124_sd_dissector(packet_info *pinfo _U_, guint32 channelId, disse dissector_handle_t dissector_handle; dissector_handle=create_dissector_handle(dissector, proto); - dissector_add_uint("t124.sd", channelId, dissector_handle); + dissector_add_uint("t124.sd", channelId_param, dissector_handle); } |