aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-07-15 18:05:27 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-07-15 18:05:27 +0000
commit58bf1dc4f7c41f8be78ef9c21ecadea824e92a28 (patch)
tree729c7fecef028c5aa8000d934605155dd796ff0e
parentf7f3b668ef1c9e59bb65d9733b4e3757b9b131b4 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=50627
-rw-r--r--epan/dissectors/packet-fcdns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-fcdns.c b/epan/dissectors/packet-fcdns.c
index 0039262e7c..fb17f9ea89 100644
--- a/epan/dissectors/packet-fcdns.c
+++ b/epan/dissectors/packet-fcdns.c
@@ -239,7 +239,7 @@ dissect_cos_flags (proto_tree *parent_tree, tvbuff_t *tvb, int offset, int hfind
if (flags&0x40){
proto_item_append_text(item, " 6");
}
- flags&=(~( 0x40 ));
+ /*flags&=(~( 0x40 ));*/
}