diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-12-27 14:08:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 14:08:26 -0700 |
commit | 2c3edd782c07f917541f3094a42149bd7e497dc2 (patch) | |
tree | 1dcce56aef3c19abcb170373470a85277dd091b6 /bolt_windows.go | |
parent | Merge pull request #625 from vrecan/FcntlFlock (diff) | |
parent | Fix return statement inside else block at the end of function and gofmt windo... (diff) | |
download | dedo-2c3edd782c07f917541f3094a42149bd7e497dc2.tar.gz dedo-2c3edd782c07f917541f3094a42149bd7e497dc2.tar.xz |
Merge pull request #616 from sinwav/idiomatic
Fix return statement inside else block at the end of function
Diffstat (limited to 'bolt_windows.go')
-rw-r--r-- | bolt_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt_windows.go b/bolt_windows.go index d538e6a..b00fb07 100644 --- a/bolt_windows.go +++ b/bolt_windows.go @@ -89,7 +89,7 @@ func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Duration) erro func funlock(db *DB) error { err := unlockFileEx(syscall.Handle(db.lockfile.Fd()), 0, 1, 0, &syscall.Overlapped{}) db.lockfile.Close() - os.Remove(db.path+lockExt) + os.Remove(db.path + lockExt) return err } |