Use mstime_t as return value of mstime().

This commit is contained in:
antirez 2015-07-28 10:14:33 +02:00
parent cf7b70e5d2
commit 5dfb7f6632

View File

@ -398,7 +398,7 @@ long long ustime(void) {
}
/* Return the UNIX time in milliseconds */
long long mstime(void) {
mstime_t mstime(void) {
return ustime()/1000;
}