Merge pull request #30001 from runcom/fix-format
devmapper: fixup error formatting
This commit is contained in:
commit
45e88e995a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ func (d *Driver) Remove(id string) error {
|
||||||
|
|
||||||
// This assumes the device has been properly Get/Put:ed and thus is unmounted
|
// This assumes the device has been properly Get/Put:ed and thus is unmounted
|
||||||
if err := d.DeviceSet.DeleteDevice(id, false); err != nil {
|
if err := d.DeviceSet.DeleteDevice(id, false); err != nil {
|
||||||
return fmt.Errorf("failed to remove device %v:%v", id, err)
|
return fmt.Errorf("failed to remove device %s: %v", id, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
mp := path.Join(d.home, "mnt", id)
|
mp := path.Join(d.home, "mnt", id)
|
||||||
|
|
Loading…
Reference in a new issue