aboutsummaryrefslogtreecommitdiff
path: root/tests/jittertest/plotJittervsFill.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/jittertest/plotJittervsFill.c')
-rw-r--r--tests/jittertest/plotJittervsFill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/jittertest/plotJittervsFill.c b/tests/jittertest/plotJittervsFill.c
index 8d71a33..03929a9 100644
--- a/tests/jittertest/plotJittervsFill.c
+++ b/tests/jittertest/plotJittervsFill.c
@@ -267,7 +267,7 @@ int main(
}
/* Is the jitter value > threshold value? */
- if(abs(jitter_ms) > JitterThreshold_ms)
+ if(abs((int)jitter_ms) > JitterThreshold_ms)
{
/* Found a jitter line that matches our crietrion.
Now set flag to be on the look out for the next
@@ -276,7 +276,7 @@ int main(
if(saveJitterCnt < MAX_SAVE_BUFFER)
{
- saveJitter[saveJitterCnt] = (int)abs(jitter_ms); /* why keep the (ms) jitter in float */
+ saveJitter[saveJitterCnt] = abs((int)jitter_ms); /* why keep the (ms) jitter in float */
dataLineNo[saveJitterCnt] = lineNo;
saveJitterCnt++;
lookFor_df = TRUE;