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 <javelinanddart@aidenswann.com>
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 86fd9ba..d0aa3dc 100644
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -262,8 +262,8 @@
         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;
 }