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 /worktree_linux.go | |
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.
Diffstat (limited to 'worktree_linux.go')
-rw-r--r-- | worktree_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |