From e2c3ea44451fe7b6c67bee78387073fa033e4c0e Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 15 Aug 2015 23:49:01 +0300 Subject: [PATCH] os/time: Make Timestamp be 64-bit unsigned integer --- src/nvim/os/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/os/time.h b/src/nvim/os/time.h index 3a6b665b51..ad4886446a 100644 --- a/src/nvim/os/time.h +++ b/src/nvim/os/time.h @@ -5,7 +5,7 @@ #include #include -typedef time_t Timestamp; +typedef uint64_t Timestamp; #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/time.h.generated.h"