diff options
Diffstat (limited to 'worktree_unix_other.go')
-rw-r--r-- | worktree_unix_other.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worktree_unix_other.go b/worktree_unix_other.go index f45966b..5b16e70 100644 --- a/worktree_unix_other.go +++ b/worktree_unix_other.go @@ -12,7 +12,7 @@ import ( func init() { fillSystemInfo = func(e *index.Entry, sys interface{}) { if os, ok := sys.(*syscall.Stat_t); ok { - e.CreatedAt = time.Unix(int64(os.Atim.Sec), int64(os.Atim.Nsec)) + e.CreatedAt = time.Unix(os.Atim.Unix()) e.Dev = uint32(os.Dev) e.Inode = uint32(os.Ino) e.GID = os.Gid |