Remove set-but-no-longer-used variable.

svn path=/trunk/; revision=52099
This commit is contained in:
Jeff Morriss 2013-09-16 14:05:31 +00:00
parent 346f803d42
commit bf093ef1f6
1 changed files with 3 additions and 5 deletions

View File

@ -275,7 +275,6 @@ dissect_sm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *sm_tree;
tvbuff_t *next_tvb = NULL;
guint32 sm_message_type;
guint32 bsn_num = 0;
guint32 bh_event_code = 0;
guint16 protocol;
guint16 msg_type = 0;
@ -461,7 +460,6 @@ dissect_sm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(sm_tree, hf_sm_retrieval_type, tvb, offset, 4, ENC_BIG_ENDIAN);
if (msg_type == PDU_RETRIEVAL_CONFIRM && tvb_get_ntohl(tvb,offset) == 0x01) {
offset += 4;
bsn_num = tvb_get_ntohl(tvb,offset);
proto_tree_add_item(sm_tree, hf_sm_bsn_num, tvb, offset, 4, ENC_BIG_ENDIAN);
}
break;