Fix a typo

This commit is contained in:
Mike Futerko 2020-12-08 20:57:36 +02:00
parent 816954d9ff
commit f3723fe04d
1 changed files with 2 additions and 3 deletions

View File

@ -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()
} }