Skip to content

Commit

Permalink
Fixed issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Nov 9, 2022
1 parent b310219 commit 97f97e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/rasdump/rasdump_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void RasDump::Command(scsi_command cmd, vector<uint8_t>& cdb) const

// Send command. Success if the transmission result is the same as the number of requests
cdb[0] = static_cast<uint8_t>(cmd);
cdb[1] |= static_cast<uint8_t>(static_cast<byte>(target_lun << 5));
cdb[1] |= static_cast<uint8_t>(static_cast<byte>(target_lun) << 5);
if (static_cast<int>(cdb.size()) != bus->SendHandShake(cdb.data(), static_cast<int>(cdb.size()), BUS::SEND_NO_DELAY)) {
BusFree();

Expand Down

0 comments on commit 97f97e6

Please sign in to comment.