diff --git a/reactos/lib/drivers/hidparser/context.c b/reactos/lib/drivers/hidparser/context.c index 3bf3662883c..984b9f3381c 100644 --- a/reactos/lib/drivers/hidparser/context.c +++ b/reactos/lib/drivers/hidparser/context.c @@ -206,9 +206,9 @@ HidParser_BuildCollectionContext( // ASSERT(CollectionSize + sizeof(HID_COLLECTION_CONTEXT) == ContextSize); - DPRINT1("CollectionContext %p\n", CollectionContext); - DPRINT1("CollectionContext RawData %p\n", CollectionContext->RawData); - DPRINT1("CollectionContext Size %lu\n", CollectionContext->Size); + DPRINT("CollectionContext %p\n", CollectionContext); + DPRINT("CollectionContext RawData %p\n", CollectionContext->RawData); + DPRINT("CollectionContext Size %lu\n", CollectionContext->Size); // // done diff --git a/reactos/lib/drivers/libusb/hub_controller.cpp b/reactos/lib/drivers/libusb/hub_controller.cpp index eef9b72855e..7b9521295ee 100644 --- a/reactos/lib/drivers/libusb/hub_controller.cpp +++ b/reactos/lib/drivers/libusb/hub_controller.cpp @@ -2122,15 +2122,15 @@ CHubController::HandleClassInterface( UsbDevice = PUSBDEVICE(Urb->UrbHeader.UsbdDeviceHandle); - DPRINT1("URB_FUNCTION_CLASS_INTERFACE\n"); - DPRINT1("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags); - DPRINT1("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength); - DPRINT1("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer); - DPRINT1("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL); - DPRINT1("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits); - DPRINT1("Request %x\n", Urb->UrbControlVendorClassRequest.Request); - DPRINT1("Value %x\n", Urb->UrbControlVendorClassRequest.Value); - DPRINT1("Index %x\n", Urb->UrbControlVendorClassRequest.Index); + DPRINT("URB_FUNCTION_CLASS_INTERFACE\n"); + DPRINT("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags); + DPRINT("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength); + DPRINT("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer); + DPRINT("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL); + DPRINT("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits); + DPRINT("Request %x\n", Urb->UrbControlVendorClassRequest.Request); + DPRINT("Value %x\n", Urb->UrbControlVendorClassRequest.Value); + DPRINT("Index %x\n", Urb->UrbControlVendorClassRequest.Index); // // initialize setup packet diff --git a/reactos/lib/drivers/libusb/usb_device.cpp b/reactos/lib/drivers/libusb/usb_device.cpp index 8887115ba1f..bc7ef06e883 100644 --- a/reactos/lib/drivers/libusb/usb_device.cpp +++ b/reactos/lib/drivers/libusb/usb_device.cpp @@ -1066,7 +1066,7 @@ CUSBDevice::SelectConfiguration( } // informal debug print - DPRINT1("[%s] SelectConfiguration New Configuration %x Old Configuration %x Result %lx\n", m_USBType, ConfigurationIndex, m_ConfigurationIndex, Status); + DPRINT("[%s] SelectConfiguration New Configuration %x Old Configuration %x Result %lx\n", m_USBType, ConfigurationIndex, m_ConfigurationIndex, Status); if (!NT_SUCCESS(Status)) { // diff --git a/reactos/lib/rtl/path.c b/reactos/lib/rtl/path.c index 6f99e1dce4f..ca68d1d1881 100644 --- a/reactos/lib/rtl/path.c +++ b/reactos/lib/rtl/path.c @@ -649,7 +649,7 @@ RtlGetFullPathName_Ustr( break; } /* Fall through */ - DPRINT1("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n"); + DPRINT("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n"); case RtlPathTypeRelative: /* foo */ Prefix = CurDirName->Buffer;