diff options
| -rw-r--r-- | apps/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c index 5b560de..fa34c21 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; |