1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fixes typo in loopback device error message

Docker-DCO-1.1-Signed-off-by: Rick van de Loo <rickvandeloo@gmail.com> (github: vdloo)
This commit is contained in:
Rick van de Loo 2014-06-18 16:32:00 +02:00
parent 4195fc0494
commit 98041d26bb

View file

@ -39,7 +39,7 @@ func openNextAvailableLoopback(index int, sparseFile *os.File) (loopFile *os.Fil
fi, err := os.Stat(target)
if err != nil {
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
}