From cca75b0c65f45432cfdc8ca081e2d1eded37051d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Tue, 2 Sep 2014 18:40:08 +0000 Subject: [PATCH] [USBHUB]: Fix a typo, corrected by kikidee! CORE-8501 #resolve #comment Corrected, thanks! svn path=/trunk/; revision=64030 --- reactos/drivers/usb/usbhub/fdo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/usb/usbhub/fdo.c b/reactos/drivers/usb/usbhub/fdo.c index 38e53b806f7..3e3cfafef02 100644 --- a/reactos/drivers/usb/usbhub/fdo.c +++ b/reactos/drivers/usb/usbhub/fdo.c @@ -1291,7 +1291,7 @@ CreateUsbChildDeviceObject( if (ConfigDesc.bNumInterfaces > 1) { - DPRINT1("Warning: Device has more that one interface. Only one interface (the first) is currently supported\n"); + DPRINT1("Warning: Device has more than one interface. Only one interface (the first) is currently supported\n"); } ConfigDescSize = ConfigDesc.wTotalLength; @@ -1328,7 +1328,7 @@ CreateUsbChildDeviceObject( //DumpFullConfigurationDescriptor(UsbChildExtension->FullConfigDesc); // - // Construct all the strings that will described the device to PNP + // Construct all the strings that will describe the device to PNP // Status = CreateDeviceIds(NewChildDeviceObject); if (!NT_SUCCESS(Status))