aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2015-08-15 23:49:01 +0300
committerZyX <kp-pav@yandex.ru>2015-10-08 22:00:46 +0300
commite2c3ea44451fe7b6c67bee78387073fa033e4c0e (patch)
treed027208b7af39d3319ee6fc36160c3d9247f7fd0
parent0caf17d0e8dda4b4abd4ec4c96d4c26f6a25ab86 (diff)
downloadrneovim-e2c3ea44451fe7b6c67bee78387073fa033e4c0e.tar.gz
rneovim-e2c3ea44451fe7b6c67bee78387073fa033e4c0e.tar.bz2
rneovim-e2c3ea44451fe7b6c67bee78387073fa033e4c0e.zip
os/time: Make Timestamp be 64-bit unsigned integer
-rw-r--r--src/nvim/os/time.h2
1 files changed, 1 insertions, 1 deletions
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 <stdbool.h>
#include <time.h>
-typedef time_t Timestamp;
+typedef uint64_t Timestamp;
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/time.h.generated.h"