In error, the first letter is low-case letter
| ... | ... |
@@ -1785,7 +1785,7 @@ func (devices *DeviceSet) initDevmapper(doInit bool) error {
|
| 1785 | 1785 |
hasData := devices.hasImage("data")
|
| 1786 | 1786 |
|
| 1787 | 1787 |
if !doInit && !hasData {
|
| 1788 |
- return errors.New("Loopback data file not found")
|
|
| 1788 |
+ return errors.New("loopback data file not found")
|
|
| 1789 | 1789 |
} |
| 1790 | 1790 |
|
| 1791 | 1791 |
if !hasData {
|
| ... | ... |
@@ -1818,7 +1818,7 @@ func (devices *DeviceSet) initDevmapper(doInit bool) error {
|
| 1818 | 1818 |
hasMetadata := devices.hasImage("metadata")
|
| 1819 | 1819 |
|
| 1820 | 1820 |
if !doInit && !hasMetadata {
|
| 1821 |
- return errors.New("Loopback metadata file not found")
|
|
| 1821 |
+ return errors.New("loopback metadata file not found")
|
|
| 1822 | 1822 |
} |
| 1823 | 1823 |
|
| 1824 | 1824 |
if !hasMetadata {
|