Skip to content

Commit

Permalink
Merge pull request moby#7865 from cure/master
Browse files Browse the repository at this point in the history
fix typos in error messages
  • Loading branch information
vieux committed Sep 3, 2014
2 parents 782cde2 + a447894 commit affef9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daemon/graphdriver/devmapper/attach_loopback.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func openNextAvailableLoopback(index int, sparseFile *os.File) (loopFile *os.Fil
// OpenFile adds O_CLOEXEC
loopFile, err = os.OpenFile(target, os.O_RDWR, 0644)
if err != nil {
log.Errorf("Error openning loopback device: %s", err)
log.Errorf("Error opening loopback device: %s", err)
return nil, ErrAttachLoopbackDevice
}

Expand Down Expand Up @@ -97,7 +97,7 @@ func attachLoopDevice(sparseName string) (loop *os.File, err error) {
// OpenFile adds O_CLOEXEC
sparseFile, err := os.OpenFile(sparseName, os.O_RDWR, 0644)
if err != nil {
log.Errorf("Error openning sparse file %s: %s", sparseName, err)
log.Errorf("Error opening sparse file %s: %s", sparseName, err)
return nil, ErrAttachLoopbackDevice
}
defer sparseFile.Close()
Expand Down

0 comments on commit affef9e

Please sign in to comment.