From f114e2ee3516ebe6dbbb94ac7d49b56f941ac792 Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Tue, 14 Feb 2017 20:41:33 -0600 Subject: [PATCH] audio: Use labs() instead of abs() * abs() accepts ints as parameters, but this breaks compile since the times are longs, not ints * Use labs() instead, which accepts longs as parameters, to fix compile Change-Id: I8f980a78380cdae18abd5b9602e281beae3ee4d3 Signed-off-by: Paul Keith --- audio/audio_hw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/audio_hw.c b/audio/audio_hw.c index 86fd9ba5..d0aa3dc8 100644 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c @@ -262,8 +262,8 @@ struct timespec time_spec_diff(struct timespec time1, struct timespec time0) { time0.tv_sec -= xsec; } - ret.tv_sec = abs(time1.tv_sec - time0.tv_sec); - ret.tv_nsec = abs(time1.tv_nsec - time0.tv_nsec); + ret.tv_sec = labs(time1.tv_sec - time0.tv_sec); + ret.tv_nsec = labs(time1.tv_nsec - time0.tv_nsec); return ret; }