mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 01:45:44 +03:00
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:
3
.changelog/11854.txt
Normal file
3
.changelog/11854.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
```bug
|
||||
freebsd: Fixed a build failure on FreeBSD ARM7 32-bit systems
|
||||
```
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user