diff --git a/reactos/drivers/filesystems/mup/mup.c b/reactos/drivers/filesystems/mup/mup.c index b0c7599d860..57094195814 100644 --- a/reactos/drivers/filesystems/mup/mup.c +++ b/reactos/drivers/filesystems/mup/mup.c @@ -2157,7 +2157,7 @@ CreateRedirectedFile(PIRP Irp, ExReleaseResourceLite(&MasterQueryContext->QueryPathListLock); /* Query the provider !*/ - DPRINT1("Requeting UNC provider: %wZ\n", &UncProvider->DeviceName); + DPRINT1("Requesting UNC provider: %wZ\n", &UncProvider->DeviceName); DPRINT("Calling: %wZ\n", &UncProvider->DeviceObject->DriverObject->DriverName); Status = IoCallDriver(UncProvider->DeviceObject, QueryIrp); } diff --git a/reactos/ntoskrnl/io/iomgr/iofunc.c b/reactos/ntoskrnl/io/iomgr/iofunc.c index e15ba8ba7f2..12aad73e94a 100644 --- a/reactos/ntoskrnl/io/iomgr/iofunc.c +++ b/reactos/ntoskrnl/io/iomgr/iofunc.c @@ -704,7 +704,7 @@ IopQueryDeviceInformation(IN PFILE_OBJECT FileObject, /* Check if this was synch I/O */ if (!LocalEvent) { - /* Check if the requet is pending */ + /* Check if the request is pending */ if (Status == STATUS_PENDING) { /* Wait on the file object */ @@ -1217,7 +1217,7 @@ IoSetInformation(IN PFILE_OBJECT FileObject, /* Check if this was synch I/O */ if (!LocalEvent) { - /* Check if the requet is pending */ + /* Check if the request is pending */ if (Status == STATUS_PENDING) { /* Wait on the file object */