pkg/system: unconvert
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
07b1aa822c
commit
ab677c41ea
1 changed files with 2 additions and 2 deletions
|
@ -20,12 +20,12 @@ func (s StatT) Size() int64 {
|
|||
|
||||
// Mode returns file's permission mode.
|
||||
func (s StatT) Mode() os.FileMode {
|
||||
return os.FileMode(s.mode)
|
||||
return s.mode
|
||||
}
|
||||
|
||||
// Mtim returns file's last modification time.
|
||||
func (s StatT) Mtim() time.Time {
|
||||
return time.Time(s.mtim)
|
||||
return s.mtim
|
||||
}
|
||||
|
||||
// Stat takes a path to a file and returns
|
||||
|
|
Loading…
Reference in a new issue