aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2007-03-20 17:20:36 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2007-03-20 17:20:36 +0000
commit09f3f70a7a8f91aeeff4fce1223c3c54f9332a71 (patch)
tree829366874ee6c2e6f4205d6c9770f9e242beed45 /epan/dissectors/packet-rtcp.c
parent5fb41ba524580a8c0b0a8cc92ab320f8c452a284 (diff)
Try to squash a warning seen by win32 buildbot
svn path=/trunk/; revision=21074
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index a09f7053f0..a7df8cbd17 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -2188,7 +2188,7 @@ static void add_roundtrip_delay_info(tvbuff_t *tvb, packet_info *pinfo,
/* Don't report on calculated delays below the threshold.
Will report delays less than -threshold, to highlight
problems with generated reports */
- if (abs(delay) < global_rtcp_show_roundtrip_calculation_minimum)
+ if (abs(delay) < (int)global_rtcp_show_roundtrip_calculation_minimum)
{
return;
}