This linter checks for unnecessary type convertions. Some convertions are whitelisted because their type is different on 32bit platforms Signed-off-by: Daniel Nephin <dnephin@gmail.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			528 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			528 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build linux solaris
 | 
						|
 | 
						|
package sys
 | 
						|
 | 
						|
import (
 | 
						|
	"syscall"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
// StatAtime returns the Atim
 | 
						|
func StatAtime(st *syscall.Stat_t) syscall.Timespec {
 | 
						|
	return st.Atim
 | 
						|
}
 | 
						|
 | 
						|
// StatCtime returns the Ctim
 | 
						|
func StatCtime(st *syscall.Stat_t) syscall.Timespec {
 | 
						|
	return st.Ctim
 | 
						|
}
 | 
						|
 | 
						|
// StatMtime returns the Mtim
 | 
						|
func StatMtime(st *syscall.Stat_t) syscall.Timespec {
 | 
						|
	return st.Mtim
 | 
						|
}
 | 
						|
 | 
						|
// StatATimeAsTime returns st.Atim as a time.Time
 | 
						|
func StatATimeAsTime(st *syscall.Stat_t) time.Time {
 | 
						|
	return time.Unix(st.Atim.Sec, st.Atim.Nsec)
 | 
						|
}
 |