mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[FLOPPY] Fix broken loop
CID 1419440
This commit is contained in:
parent
c15036cf3c
commit
c274b25c95
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ RWDetermineMediaType(PDRIVE_INFO DriveInfo, BOOLEAN OneShot)
|
|||
DriveInfo->BytesPerSectorCode = HW_512_BYTES_PER_SECTOR;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
while(FALSE);
|
||||
while(TRUE);
|
||||
|
||||
TRACE_(FLOPPY, "RWDetermineMediaType(): failed to find media\n");
|
||||
return STATUS_UNRECOGNIZED_MEDIA;
|
||||
|
|
Loading…
Reference in a new issue