summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-05-23 12:18:10 +0000
committerJörg Mayer <jmayer@loplof.de>2005-05-23 12:18:10 +0000
commit83f9a803ac96fe5741a30ed77c571f6e7d9a151c (patch)
tree0b67063691c61aec677684e4b26af5c05a5405fb /epan
parent33aa290b25e317822fef3ce0ce60edd0df95bdc7 (diff)
downloadwireshark-83f9a803ac96fe5741a30ed77c571f6e7d9a151c.tar.gz
Warning fix:
packet-bacapp.c:1266:1: warning: C++ style comments are not allowed in ISO C90 packet-bacapp.c:1266:1: warning: (this will be reported only once per input file) svn path=/trunk/; revision=14418
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-bacapp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-bacapp.c b/epan/dissectors/packet-bacapp.c
index 090ce854eb..6a7538b255 100644
--- a/epan/dissectors/packet-bacapp.c
+++ b/epan/dissectors/packet-bacapp.c
@@ -1263,8 +1263,8 @@ val_to_split_str(guint32 val, guint32 split_val, const value_string *vs,
return val_to_str(val, vs, split_fmt);
};
-// from clause 20.2.1.3.2 Constructed Data
-// returns true if the extended value is used
+/* from clause 20.2.1.3.2 Constructed Data */
+/* returns true if the extended value is used */
static gboolean tag_is_extended_value(guint8 octet)
{
return ((octet & 0x07) == 5);