Add cast to satisfy buildbot

Change-Id: Ib0f66fb6e4a577da7381a75789b08a0d0371ddd2
Reviewed-on: https://code.wireshark.org/review/1709
Reviewed-by: Evan Huus <eapache@gmail.com>
This commit is contained in:
Evan Huus 2014-05-20 23:01:49 -04:00
parent 5d8c3cc450
commit 0ac1779822
1 changed files with 1 additions and 1 deletions

View File

@ -807,7 +807,7 @@ dissect_rtpproxy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
* https://github.com/sipwise/rtpengine/blob/master/daemon/call_interfaces.c#L66
* for further details */
tmp = tvb_find_guint8(tvb, offset, -1, ' ');
if(tmp == -1){
if(tmp == (guint)(-1)){
/* No extension - operate normally */
tmp = tvb_find_line_end(tvb, offset, -1, &new_offset, FALSE);
}