summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/mp_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mp_common.c b/core/mp_common.c
index 4fef9c37dd..611cb22bcf 100644
--- a/core/mp_common.c
+++ b/core/mp_common.c
@@ -31,7 +31,7 @@ char *mp_format_time(double time, bool fractions)
sign[0] = '-';
}
long long int itime = time;
- int64_t h, m, s;
+ long long int h, m, s;
s = itime;
h = s / 3600;
s -= h * 3600;