From eaee47e7550a2a57028b526a8832d5d671ccc4e6 Mon Sep 17 00:00:00 2001 From: Michal Janusz Miroslaw Date: Sat, 19 Apr 2003 02:48:34 +0000 Subject: [PATCH] Fixed typo in comment. --- files/drive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/drive.c b/files/drive.c index cab147e1efa..c8a9f884947 100644 --- a/files/drive.c +++ b/files/drive.c @@ -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",