[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #280 from mfuterko/master
Browse files Browse the repository at this point in the history
Fix a typo
  • Loading branch information
0xmichalis committed Dec 9, 2020
2 parents 816954d + f3723fe commit 32b5faa
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 32b5faa

Please sign in to comment.