Use mstime_t as return value of mstime().

This commit is contained in:
antirez 2015-07-28 10:14:33 +02:00
parent 02b1d5213d
commit a83e79b176

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;
}