Try to please the OSX buildbots

svn path=/trunk/; revision=49024
This commit is contained in:
Pascal Quantin 2013-04-25 05:24:07 +00:00
parent eba34e00e7
commit 35d3fa75be
1 changed files with 3 additions and 3 deletions

View File

@ -1458,7 +1458,7 @@ static void
dissect_rtp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
{
proto_item *ti = NULL;
proto_tree *rtp_tree = NULL;
proto_tree *volatile rtp_tree = NULL;
proto_tree *rtp_csrc_tree = NULL;
proto_tree *rtp_hext_tree = NULL;
guint8 octet1, octet2;
@ -1473,10 +1473,10 @@ dissect_rtp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
unsigned int i = 0;
unsigned int hdr_extension_len= 0;
unsigned int hdr_extension_id = 0;
unsigned int padding_count;
volatile unsigned int padding_count;
gint length, reported_length;
int data_len;
unsigned int offset = 0;
volatile unsigned int offset = 0;
guint16 seq_num;
guint32 timestamp;
guint32 sync_src;