cemi: fix dead assignment (found by clang).

Change-Id: I30739813c84ae05c9c6edf31b204dfff8496a954
Reviewed-on: https://code.wireshark.org/review/30477
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Dario Lombardo 2018-11-01 23:51:49 +01:00 committed by Alexis La Goutte
parent 63a1eb2eea
commit 9040e7b0f5
1 changed files with 1 additions and 1 deletions

View File

@ -1396,7 +1396,7 @@ static void dissect_range( tvbuff_t *tvb, packet_info *pinfo, proto_item *node,
}
/* 12 bits Start Index */
node = proto_tree_add_item( range_list, hf_cemi_sx, tvb, offset, 2, ENC_BIG_ENDIAN );
proto_tree_add_item( range_list, hf_cemi_sx, tvb, offset, 2, ENC_BIG_ENDIAN );
}
offset += 2;