Fixed typo.

This commit is contained in:
mlong 2021-02-28 12:28:27 -06:00
parent dcefd2d2b6
commit 8813a5efd9
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ DIError WrapperDiskCopy42::WriteHeader(GenericFD* pGFD, const DC42Header* pHeade
* magic string. To be safe, we only increment it if it starts with '-'.
* (Need access to a Macintosh to test this.)
*/
hdrBuf[0] = (uint8_t) (strlen(pHeader->diskName) % 0xff);
hdrBuf[0] = (uint8_t) (strlen(pHeader->diskName) & 0xff);
if (pHeader->diskName[0] == '-' && hdrBuf[0] < (kDC42NameLen-1))
hdrBuf[0]++;
memcpy(&hdrBuf[1], pHeader->diskName, hdrBuf[0]);