Fixed typo in comment.

This commit is contained in:
Michal Janusz Miroslaw 2003-04-19 02:48:34 +00:00 committed by Alexandre Julliard
parent 5d730664da
commit eaee47e755
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ int DRIVE_ReadSuperblock (int drive, char * buff)
struct stat stat_buf;
memset(buff, 0, DRIVE_SUPER);
/* O_NONBLOCK in case we're opening FIFO; we'll be reset it later */
/* O_NONBLOCK in case we're opening FIFO; will be reset later */
if ((fd = open(DOSDrives[drive].device, O_RDONLY|O_NOCTTY|O_NONBLOCK)) != -1) {
if (fstat(fd, &stat_buf) < 0) { /* shouldn't happen since we just opened that file */
ERR("fstat() failed for opened device '%s' (drive %c:) ! IT SHOULDN'T HAPPEN !!!\n",