From 0555cb2ea9bdc8e210e87e009154954a9bbc3a55 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 2 Nov 2017 01:10:11 +0100 Subject: jittertest: Use the appropriate versions of abs() When passing a long argument, actually use labs(). The other case of passing a float to "int abs(int)" and casting the result to an int doesn't really make sense. Pull the cast inside the abs(). Signed-off-by: David Oberhollenzer --- tests/jittertest/JitterTest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/jittertest/JitterTest.c') diff --git a/tests/jittertest/JitterTest.c b/tests/jittertest/JitterTest.c index 4627fb0..e109995 100644 --- a/tests/jittertest/JitterTest.c +++ b/tests/jittertest/JitterTest.c @@ -591,12 +591,12 @@ void AlarmHandler( /* Store some historical #'s */ - if(abs(timeDiffusec) > LastMaxDiff) + if(labs(timeDiffusec) > LastMaxDiff) { - LastMaxDiff = abs(timeDiffusec); + LastMaxDiff = labs(timeDiffusec); sprintf(&tmpBuf[strlen(tmpBuf)],"!"); - if((GrabKProfile == TRUE) && (ProfileTriggerMSecs < (abs(timeDiffusec)/1000))) + if((GrabKProfile == TRUE) && (ProfileTriggerMSecs < (labs(timeDiffusec)/1000))) { sprintf(profileFileName, "JitterTest.profilesnap-%i", profileFileNo); -- cgit v1.2.3