aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isup.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:11:41 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:11:41 +0000
commitf015ca3180ac7b63bb98dbf07d07f4e4faeb2f2f (patch)
tree8f42d8f9caa0d513ada4068ee526cf7700631e45 /epan/dissectors/packet-isup.c
parenta635df5ca024064135a98863b831cb57215689f2 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=51659
Diffstat (limited to 'epan/dissectors/packet-isup.c')
-rw-r--r--epan/dissectors/packet-isup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c
index e5ce1fa7f1..ee7995e8f8 100644
--- a/epan/dissectors/packet-isup.c
+++ b/epan/dissectors/packet-isup.c
@@ -8141,7 +8141,7 @@ dissect_japan_chg_inf_type_crt(tvbuff_t *parameter_tvb, proto_tree *parameter_tr
if(len>11){
/* Spare charge rate (SCR) (Octets J,K,L) IA5 coded in three octets */
proto_tree_add_item(parameter_tree, hf_japan_isup_scr, parameter_tvb, offset, 3, ENC_NA|ENC_ASCII);
- offset+=3;
+ /*offset+=3;*/
}
}
}