Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang

svn path=/trunk/; revision=50365
This commit is contained in:
Alexis La Goutte 2013-07-03 16:45:42 +00:00
parent 16bd4e733d
commit 4f2a033098
1 changed files with 1 additions and 1 deletions

View File

@ -965,7 +965,7 @@ dissect_osd_capability(tvbuff_t *tvb, int offset, proto_tree *parent_tree)
/* object descriptor */
proto_tree_add_item(tree, hf_scsi_osd_object_descriptor, tvb, offset, 24, ENC_NA);
offset+=24;
/*offset+=24;*/
return;
}