[USBSTOR]

* Fix some format specifiers.

svn path=/trunk/; revision=58541
This commit is contained in:
Amine Khaldi 2013-03-17 15:18:15 +00:00
parent 41d46eca5c
commit 54934bd809
4 changed files with 8 additions and 8 deletions

View file

@ -331,7 +331,7 @@ USBSTOR_ScanConfigurationDescriptor(
VOID VOID
DumpConfigurationDescriptor(PUSB_CONFIGURATION_DESCRIPTOR ConfigurationDescriptor) DumpConfigurationDescriptor(PUSB_CONFIGURATION_DESCRIPTOR ConfigurationDescriptor)
{ {
DPRINT1("Dumping ConfigurationDescriptor %x\n", ConfigurationDescriptor); DPRINT1("Dumping ConfigurationDescriptor %p\n", ConfigurationDescriptor);
DPRINT1("bLength %x\n", ConfigurationDescriptor->bLength); DPRINT1("bLength %x\n", ConfigurationDescriptor->bLength);
DPRINT1("bDescriptorType %x\n", ConfigurationDescriptor->bDescriptorType); DPRINT1("bDescriptorType %x\n", ConfigurationDescriptor->bDescriptorType);
DPRINT1("wTotalLength %x\n", ConfigurationDescriptor->wTotalLength); DPRINT1("wTotalLength %x\n", ConfigurationDescriptor->wTotalLength);
@ -535,7 +535,7 @@ USBSTOR_GetPipeHandles(
// //
// WTF? usb port driver does not give us bulk pipe access // WTF? usb port driver does not give us bulk pipe access
// //
DPRINT1("USBSTOR_GetPipeHandles> BulkInFound %d BulkOutFound %d missing!!!\n", BulkInFound, BulkOutFound); DPRINT1("USBSTOR_GetPipeHandles> BulkInFound %c BulkOutFound %c missing!!!\n", BulkInFound, BulkOutFound);
return STATUS_DEVICE_CONFIGURATION_ERROR; return STATUS_DEVICE_CONFIGURATION_ERROR;
} }

View file

@ -42,7 +42,7 @@ USBSTOR_GetEndpointStatus(
// //
// send the request // send the request
// //
DPRINT1("Sending Request DeviceObject %x, Urb %x\n", DeviceObject, Urb); DPRINT1("Sending Request DeviceObject %p, Urb %p\n", DeviceObject, Urb);
Status = USBSTOR_SyncUrbRequest(DeviceObject, Urb); Status = USBSTOR_SyncUrbRequest(DeviceObject, Urb);
// //
@ -90,7 +90,7 @@ USBSTOR_ResetPipeWithHandle(
// //
// send the request // send the request
// //
DPRINT1("Sending Request DeviceObject %x, Urb %x\n", DeviceObject, Urb); DPRINT1("Sending Request DeviceObject %p, Urb %p\n", DeviceObject, Urb);
Status = USBSTOR_SyncUrbRequest(DeviceObject, Urb); Status = USBSTOR_SyncUrbRequest(DeviceObject, Urb);
// //

View file

@ -14,7 +14,7 @@
VOID VOID
USBSTOR_DumpDeviceDescriptor(PUSB_DEVICE_DESCRIPTOR DeviceDescriptor) USBSTOR_DumpDeviceDescriptor(PUSB_DEVICE_DESCRIPTOR DeviceDescriptor)
{ {
DPRINT1("Dumping Device Descriptor %x\n", DeviceDescriptor); DPRINT1("Dumping Device Descriptor %p\n", DeviceDescriptor);
DPRINT1("bLength %x\n", DeviceDescriptor->bLength); DPRINT1("bLength %x\n", DeviceDescriptor->bLength);
DPRINT1("bDescriptorType %x\n", DeviceDescriptor->bDescriptorType); DPRINT1("bDescriptorType %x\n", DeviceDescriptor->bDescriptorType);
DPRINT1("bcdUSB %x\n", DeviceDescriptor->bcdUSB); DPRINT1("bcdUSB %x\n", DeviceDescriptor->bcdUSB);

View file

@ -671,14 +671,14 @@ USBSTOR_PdoHandleQueryInstanceId(
// //
// using serial number from device // using serial number from device
// //
swprintf(Buffer, L"%s&%d", FDODeviceExtension->SerialNumber->bString, PDODeviceExtension->LUN); swprintf(Buffer, L"%s&%c", FDODeviceExtension->SerialNumber->bString, PDODeviceExtension->LUN);
} }
else else
{ {
// //
// use instance count and LUN // use instance count and LUN
// //
swprintf(Buffer, L"%04d&%d", FDODeviceExtension->InstanceCount, PDODeviceExtension->LUN); swprintf(Buffer, L"%04lu&%c", FDODeviceExtension->InstanceCount, PDODeviceExtension->LUN);
} }
// //
@ -1203,7 +1203,7 @@ USBSTOR_SendInquiryIrp(
DPRINT1("Version %x\n", Response->Version); DPRINT1("Version %x\n", Response->Version);
DPRINT1("Format %x\n", Response->Format); DPRINT1("Format %x\n", Response->Format);
DPRINT1("Length %x\n", Response->Length); DPRINT1("Length %x\n", Response->Length);
DPRINT1("Reserved %x\n", Response->Reserved); DPRINT1("Reserved %p\n", Response->Reserved);
DPRINT1("Vendor %c%c%c%c%c%c%c%c\n", Response->Vendor[0], Response->Vendor[1], Response->Vendor[2], Response->Vendor[3], Response->Vendor[4], Response->Vendor[5], Response->Vendor[6], Response->Vendor[7]); DPRINT1("Vendor %c%c%c%c%c%c%c%c\n", Response->Vendor[0], Response->Vendor[1], Response->Vendor[2], Response->Vendor[3], Response->Vendor[4], Response->Vendor[5], Response->Vendor[6], Response->Vendor[7]);
DPRINT1("Product %c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c\n", Response->Product[0], Response->Product[1], Response->Product[2], Response->Product[3], DPRINT1("Product %c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c\n", Response->Product[0], Response->Product[1], Response->Product[2], Response->Product[3],
Response->Product[4], Response->Product[5], Response->Product[6], Response->Product[7], Response->Product[4], Response->Product[5], Response->Product[6], Response->Product[7],