aboutsummaryrefslogtreecommitdiffstats
path: root/worktree_unix_other.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2022-04-09 01:23:34 +0200
committerGitHub <noreply@github.com>2022-04-09 01:23:34 +0200
commit4f916225cb2f5f96c4f046b139d2a597387b8f8e (patch)
treecee500e0b8a18ecf68b72449caec8838a7b2e5fb /worktree_unix_other.go
parentc785af3f4559ebac52c42f12d17cb118aac383ad (diff)
downloadgo-git-4f916225cb2f5f96c4f046b139d2a597387b8f8e.tar.gz
Worktree: use syscall.Timespec.Unix #437
Use the syscall method instead of repeating the type conversions for the syscall.Stat_t Atim/Atimespec/Ctim members.
Diffstat (limited to 'worktree_unix_other.go')
-rw-r--r--worktree_unix_other.go2
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