Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuterko committed Dec 8, 2020
1 parent 816954d commit f3723fe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mem/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ import (
"path/filepath"
"sync"
"sync/atomic"
"time"
)

import "time"

const FilePathSeparator = string(filepath.Separator)

type File struct {
Expand Down Expand Up @@ -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()
}

Expand Down

0 comments on commit f3723fe

Please sign in to comment.