We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6241d0e commit 493e8c7Copy full SHA for 493e8c7
worktree_linux.go
@@ -12,7 +12,7 @@ import (
12
func init() {
13
fillSystemInfo = func(e *index.Entry, sys interface{}) {
14
if os, ok := sys.(*syscall.Stat_t); ok {
15
- e.CreatedAt = time.Unix(os.Ctim.Sec, os.Ctim.Nsec)
+ e.CreatedAt = time.Unix(int64(os.Ctim.Sec), int64(os.Ctim.Nsec))
16
e.Dev = uint32(os.Dev)
17
e.Inode = uint32(os.Ino)
18
e.GID = os.Gid
0 commit comments