diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2022-04-09 01:23:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 01:23:34 +0200 |
commit | 4f916225cb2f5f96c4f046b139d2a597387b8f8e (patch) | |
tree | cee500e0b8a18ecf68b72449caec8838a7b2e5fb | |
parent | c785af3f4559ebac52c42f12d17cb118aac383ad (diff) | |
download | go-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.
-rw-r--r-- | worktree_bsd.go | 2 | ||||
-rw-r--r-- | worktree_linux.go | 2 | ||||
-rw-r--r-- | worktree_unix_other.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/worktree_bsd.go b/worktree_bsd.go index d4ea327..d4682eb 100644 --- a/worktree_bsd.go +++ b/worktree_bsd.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.Atimespec.Sec), int64(os.Atimespec.Nsec)) + e.CreatedAt = time.Unix(os.Atimespec.Unix()) e.Dev = uint32(os.Dev) e.Inode = uint32(os.Ino) e.GID = os.Gid diff --git a/worktree_linux.go b/worktree_linux.go index cf0db25..6fcace2 100644 --- a/worktree_linux.go +++ b/worktree_linux.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.Ctim.Sec), int64(os.Ctim.Nsec)) + e.CreatedAt = time.Unix(os.Ctim.Unix()) e.Dev = uint32(os.Dev) e.Inode = uint32(os.Ino) e.GID = os.Gid 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 |