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

svn path=/trunk/; revision=48509
This commit is contained in:
Alexis La Goutte 2013-03-23 13:09:17 +00:00
parent 1420f4276d
commit 4f179e4bb2
1 changed files with 2 additions and 1 deletions

View File

@ -2670,7 +2670,7 @@ new_ud_msg(packet_info *pinfo, guint32 msg_type _U_)
return m;
}
static void
static int
dissect_sccp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *sccp_tree,
proto_tree *tree)
{
@ -3319,6 +3319,7 @@ dissect_sccp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *sccp_tree,
}
}
return offset;
}
static void