ISIS: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang

Change-Id: I58debb32cc7a4aa476961eda342f1cd90884c800
Reviewed-on: https://code.wireshark.org/review/6921
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2015-02-02 22:28:59 +01:00 committed by Michael Mann
parent 383caa72cf
commit 9d7f5c7611
1 changed files with 1 additions and 1 deletions

View File

@ -2202,7 +2202,7 @@ dissect_subclv_bw_ct(tvbuff_t *tvb, proto_tree *tree, int offset, int sublen)
bw = tvb_get_ntohieee_float(tvb, offset)*8/1000000;
proto_tree_add_float_format_value(ntree, hf_isis_lsp_bw_ct7, tvb, offset, 4,
bw, "%.2f Mbps", bw);
offset += 4;
/*offset += 4;*/
}
}