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