diff options
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ static i64 make_timestamp(void){ struct timeval tv; gettimeofday(&tv,NULL); - return (i64)tv.tv_sec+tv.tv_usec; + return (i64)tv.tv_sec*1000000+tv.tv_usec; } |