Device: Remove const from bool return type
parent
387c39d3a0
commit
f25a0a4a81
|
|
@ -2116,7 +2116,7 @@ bool Device::readVSA(const VSAExtractionSettings& extractionSettings) {
|
||||||
if(isOnline()) {
|
if(isOnline()) {
|
||||||
goOffline();
|
goOffline();
|
||||||
}
|
}
|
||||||
auto innerReadVSA = [&](uint64_t diskSize) -> const bool {
|
auto innerReadVSA = [&](uint64_t diskSize) -> bool {
|
||||||
// Adjust driver to offset to start of VSA file
|
// Adjust driver to offset to start of VSA file
|
||||||
const auto& offset = getVSAOffsetInLogicalDisk();
|
const auto& offset = getVSAOffsetInLogicalDisk();
|
||||||
if(!offset) {
|
if(!offset) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue