Browse Source

Correct == to = for verify with bytchk of 3

Glenn Anderson 3 years ago
parent
commit
5c357b578c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/BlueSCSI.cpp

+ 1 - 1
src/BlueSCSI.cpp

@@ -1164,7 +1164,7 @@ byte onVerifyCommand(byte flags, uint32_t adds, uint32_t len)
   if (bytchk != 0) {
     if (bytchk == 3) {
       // Data-Out buffer is single logical block for repeated verification.
-      len == m_img->m_blocksize;
+      len = m_img->m_blocksize;
     }
     LED_ON();
     verifyDataPhaseSD(adds, len);