diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-11-17 05:02:30 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-11-17 05:02:30 +0000 |
commit | 7586ab64db1b8124d5eaf91974e7237760b9ae63 (patch) | |
tree | af097871c7e9d9377f881bd2a5045e1284813120 /epan/dissectors/packet-x411.c | |
parent | 0c8be0fab61afea54d14e36fd7c99a3721e86acf (diff) | |
download | wireshark-7586ab64db1b8124d5eaf91974e7237760b9ae63.tar.gz wireshark-7586ab64db1b8124d5eaf91974e7237760b9ae63.tar.bz2 wireshark-7586ab64db1b8124d5eaf91974e7237760b9ae63.zip |
Squelch some const vs. non-const warnings.
svn path=/trunk/; revision=16525
Diffstat (limited to 'epan/dissectors/packet-x411.c')
-rw-r--r-- | epan/dissectors/packet-x411.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x411.c b/epan/dissectors/packet-x411.c index 042c342bac..d833074e83 100644 --- a/epan/dissectors/packet-x411.c +++ b/epan/dissectors/packet-x411.c @@ -2094,7 +2094,7 @@ static int dissect_built_in_impl(packet_info *pinfo, proto_tree *tree, tvbuff_t static int dissect_x411_ExtendedContentType(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index _U_) { - char *name = NULL; + const char *name = NULL; offset = dissect_ber_object_identifier_str(implicit_tag, pinfo, tree, tvb, offset, hf_index, &content_type_id); |