diff options
| author | Quinten Johnson <[email protected]> | 2018-10-30 15:34:21 -0500 |
|---|---|---|
| committer | Adonais Romero González <[email protected]> | 2018-10-30 13:34:21 -0700 |
| commit | 5ef46a2e2013313835e3e4b29f9190ae3ceedabe (patch) | |
| tree | 487411fe4cbc2f6b470e9623e53c207cfff198bb | |
| parent | d43f241cff2ad83c7340269f98249825ab73ad21 (diff) | |
Fix some comment typos (#294)
| -rw-r--r-- | filesys/fastfat/close.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/filesys/fastfat/close.c b/filesys/fastfat/close.c index 1712ad94..ca6f4918 100644 --- a/filesys/fastfat/close.c +++ b/filesys/fastfat/close.c @@ -297,7 +297,7 @@ Return Value: // // We had some trouble trying to perform the requested // operation, so we'll abort the I/O request with the - // error status that we get back from the execption code. + // error status that we get back from the exception code. // Status = FatProcessException( NULL, Irp, GetExceptionCode() ); @@ -666,7 +666,7 @@ Return Value: // // If the queues are above the limits by a significant amount, we have - // to try hard to pull them down. To do this, we will aggresively try + // to try hard to pull them down. To do this, we will aggressively try // to find closes for the last volume the caller looked at. This will // make sure we fully utilize the acquisition of the volume, which can // be a hugely expensive resource to get (create/close/cleanup use it @@ -881,7 +881,7 @@ Return Value: DebugTrace(+1, Dbg, "FatCommonClose...\n", 0); // - // Initailize the callers variable, if needed. + // Initialize the callers variable, if needed. // LocalVcbDeleted = FALSE; @@ -1077,7 +1077,7 @@ Return Value: // // Dereference the directory file. This may cause a close - // Irp to be processed, so we need to do this before we destory + // Irp to be processed, so we need to do this before we destroy // the Fcb. // @@ -1203,7 +1203,7 @@ Return Value: // // We need the global lock, which must be acquired before the // VCB. Since we already have the VCB, we have to drop and - // reaquire here. Note that we always want to wait from this + // reacquire here. Note that we always want to wait from this // point on. Note that the VCB cannot go away, since we have // biased the open file count. // |
