From 48b1a2d39d1678c0dfa7b2271c29c52b6c8169d0 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sun, 20 Feb 2011 11:46:57 +0000 Subject: Fix the r29343 red. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29344 a1c6a512-1295-4272-9138-f99709370657 --- apps/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/misc.c b/apps/misc.c index 5b560dee16..fa34c21f4e 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -894,7 +894,7 @@ char* skip_whitespace(char* const str) */ void format_time(char* buf, int buf_size, long t) { - int const time = ABS(t / 1000); + int const time = abs(t / 1000); int const hours = time / 3600; int const minutes = time / 60 - hours * 60; int const seconds = time % 60; -- cgit v1.2.3