summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2011-04-21 13:33:23 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2011-04-21 13:33:23 +0000
commit3e4e507ce02391dfbd70834476b8e7077e9ebf09 (patch)
tree73b482cee1c9e9f75c2c42ea607aa760b6750668 /epan
parent0c598a950d55b4fb7398c62b08693fe36559675a (diff)
downloadwireshark-3e4e507ce02391dfbd70834476b8e7077e9ebf09.tar.gz
Fix Dead Store (Dead nested assignment) Warning found by Clang
svn path=/trunk/; revision=36757
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-mtp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mtp3.c b/epan/dissectors/packet-mtp3.c
index 431a8a3ec2..1e04e9937c 100644
--- a/epan/dissectors/packet-mtp3.c
+++ b/epan/dissectors/packet-mtp3.c
@@ -601,7 +601,7 @@ dissect_mtp3_routing_label(tvbuff_t *tvb, packet_info *pinfo, proto_tree *mtp3_t
break;
default:
- opc = dpc = 0; /* just to avoid a compiler warning */
+ opc = 0; /* just to avoid a compiler warning */
DISSECTOR_ASSERT_NOT_REACHED();
}