From fd75cc462f029e9e271b706992cb7c09feccb628 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Fri, 18 Nov 2016 15:20:19 -0800 Subject: [PATCH] fix gofmt in master Signed-off-by: Victor Vieux (cherry picked from commit 9f348d5625996faf7a0855b8eb52cdd4def3958e) Signed-off-by: Victor Vieux --- volume/store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volume/store/store.go b/volume/store/store.go index bd13d862e9..40ae6ad6f1 100644 --- a/volume/store/store.go +++ b/volume/store/store.go @@ -142,7 +142,7 @@ func (s *VolumeStore) Purge(name string) { type VolumeStore struct { // locks ensures that only one action is being performed on a particular volume at a time without locking the entire store // since actions on volumes can be quite slow, this ensures the store is free to handle requests for other volumes. - locks *locker.Locker + locks *locker.Locker // globalLock is used to protect access to mutable structures used by the store object globalLock sync.RWMutex // names stores the volume name -> volume relationship.