From e28b4dbd5c0edb4806fd30b8b8d362ec2ed0a00f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Wei=C3=9F?= Date: Thu, 6 May 2021 14:13:53 +0200 Subject: [PATCH] Cleanup. --- Formatters/SecondsFormatter.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formatters/SecondsFormatter.m b/Formatters/SecondsFormatter.m index 3dbe0c66e..c20ba9787 100644 --- a/Formatters/SecondsFormatter.m +++ b/Formatters/SecondsFormatter.m @@ -40,7 +40,7 @@ if (isinf(timeInterval)) { return @"Inf"; } BOOL isNegative = signbit(timeInterval); - + int totalSeconds = (int)(isNegative ? -timeInterval : timeInterval); int seconds = totalSeconds % 60;