aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ber.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-10-08 21:14:33 +0000
committerGuy Harris <guy@alum.mit.edu>2004-10-08 21:14:33 +0000
commit3acb84d24a16ce039dcac9d6d41e2acc45ec478c (patch)
treea834298487d8e912f426c028e12895d2fb6cb478 /epan/dissectors/packet-ber.h
parent7b287f6696de4bcf277e27d5f6dcbd77cab79816 (diff)
Make the "asn_namedbit *" argument to "dissect_ber_bitstring()" a
"const" pointer. svn path=/trunk/; revision=12247
Diffstat (limited to 'epan/dissectors/packet-ber.h')
-rw-r--r--epan/dissectors/packet-ber.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ber.h b/epan/dissectors/packet-ber.h
index 66f6d65587..a27760f22c 100644
--- a/epan/dissectors/packet-ber.h
+++ b/epan/dissectors/packet-ber.h
@@ -151,7 +151,7 @@ typedef struct _asn_namedbit {
} asn_namedbit;
/* this function dissects a BER BIT-STRING
*/
-extern int dissect_ber_bitstring(gboolean implicit_tag, packet_info *pinfo, proto_tree *parent_tree, tvbuff_t *tvb, int offset, asn_namedbit *named_bits, gint hf_id, gint ett_id, tvbuff_t **out_tvb);
+extern int dissect_ber_bitstring(gboolean implicit_tag, packet_info *pinfo, proto_tree *parent_tree, tvbuff_t *tvb, int offset, const asn_namedbit *named_bits, gint hf_id, gint ett_id, tvbuff_t **out_tvb);
extern int dissect_ber_bitstring32(gboolean implicit_tag, packet_info *pinfo, proto_tree *parent_tree, tvbuff_t *tvb, int offset, int **bit_fields, gint hf_id, gint ett_id, tvbuff_t **out_tvb);