forked from mirror/afero
Fix a typo
This commit is contained in:
parent
816954d9ff
commit
f3723fe04d
|
@ -22,10 +22,9 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
import "time"
|
|
||||||
|
|
||||||
const FilePathSeparator = string(filepath.Separator)
|
const FilePathSeparator = string(filepath.Separator)
|
||||||
|
|
||||||
type File struct {
|
type File struct {
|
||||||
|
@ -105,7 +104,7 @@ func SetUID(f *FileData, uid int) {
|
||||||
|
|
||||||
func SetGID(f *FileData, gid int) {
|
func SetGID(f *FileData, gid int) {
|
||||||
f.Lock()
|
f.Lock()
|
||||||
f.uid = gid
|
f.gid = gid
|
||||||
f.Unlock()
|
f.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue