Browse Source

Fixes typo in loopback device error message

Docker-DCO-1.1-Signed-off-by: Rick van de Loo <rickvandeloo@gmail.com> (github: vdloo)
Rick van de Loo 11 năm trước cách đây
mục cha
commit
98041d26bb

+ 1 - 1
daemon/graphdriver/devmapper/attach_loopback.go

@@ -39,7 +39,7 @@ func openNextAvailableLoopback(index int, sparseFile *os.File) (loopFile *os.Fil
 		fi, err := os.Stat(target)
 		fi, err := os.Stat(target)
 		if err != nil {
 		if err != nil {
 			if os.IsNotExist(err) {
 			if os.IsNotExist(err) {
-				utils.Errorf("There are no more loopback device available.")
+				utils.Errorf("There are no more loopback devices available.")
 			}
 			}
 			return nil, ErrAttachLoopbackDevice
 			return nil, ErrAttachLoopbackDevice
 		}
 		}