freebsd: build fix for ARM7 32-bit (#11854)

The size of `stat_t` fields is architecture dependent, which was
reportedly causing a build failure on FreeBSD ARM7 32-bit
systems. This changeset matches the behavior we have on Linux.
This commit is contained in:
Tim Gross
2022-01-14 12:25:32 -05:00
committed by GitHub
parent 77287b0bfc
commit 6b7ecb2a65
2 changed files with 5 additions and 1 deletions

3
.changelog/11854.txt Normal file
View File

@@ -0,0 +1,3 @@
```bug
freebsd: Fixed a build failure on FreeBSD ARM7 32-bit systems
```

View File

@@ -12,5 +12,6 @@ import (
func (l *logFile) createTime(stat os.FileInfo) time.Time {
stat_t := stat.Sys().(*syscall.Stat_t)
createTime := stat_t.Ctimespec
return time.Unix(createTime.Sec, createTime.Nsec)
// Sec and Nsec are int32 in 32-bit architectures.
return time.Unix(int64(createTime.Sec), int64(createTime.Nsec)) //nolint:unconvert
}