We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6241d0e + 493e8c7 commit 0d1a009Copy full SHA for 0d1a009
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