Skip to content

Commit

Permalink
Fix scope
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Oct 26, 2024
1 parent 7112254 commit 8feac38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/devices/tape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ vector<uint8_t> Tape::InquiryInternal() const
int Tape::VerifyBlockSizeChange(int requested_size, bool temporary) const
{
// Special handling of block size 0 for sequential-access devices, according to the SCSI-2 specification
return requested_size || !temporary ? VerifyBlockSizeChange(requested_size, temporary) : 0;
return requested_size || !temporary ? StorageDevice::VerifyBlockSizeChange(requested_size, temporary) : 0;
}

void Tape::SetUpModePages(map<int, vector<byte>> &pages, int page, bool changeable) const
Expand Down

0 comments on commit 8feac38

Please sign in to comment.