# | Line 56 | Line 56 | static bool is_drive_number_free(int num | |
---|---|---|
56 | uint32 e = ReadMacInt32(0x308 + qHead); | |
57 | while (e) { | |
58 | uint32 d = e - dsQLink; | |
59 | < | if (ReadMacInt16(d + dsQDrive) == num) |
59 | > | if ((int)ReadMacInt16(d + dsQDrive) == num) |
60 | return false; | |
61 | e = ReadMacInt32(e + qLink); | |
62 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |