mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
Fix some printf specifiers...
svn path=/trunk/; revision=66747
This commit is contained in:
parent
1cd9362c3a
commit
07d66bcb42
4 changed files with 4 additions and 4 deletions
|
@ -478,7 +478,7 @@ RegisterTypeLibraries (HINF hinf, LPCWSTR szSection)
|
||||||
hret = SHGetFolderPathW(NULL, csidl, NULL, 0, szPath);
|
hret = SHGetFolderPathW(NULL, csidl, NULL, 0, szPath);
|
||||||
if (FAILED(hret))
|
if (FAILED(hret))
|
||||||
{
|
{
|
||||||
FatalError("SHGetFolderPathW failed hret=0x%d\n", hret);
|
FatalError("SHGetFolderPathW failed hret=0x%lx\n", hret);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -178,7 +178,7 @@ i8042MouHandle(
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ERR_(I8042PRT, "Unexpected state 0x%u!\n", DeviceExtension->MouseState);
|
ERR_(I8042PRT, "Unexpected state 0x%lx!\n", DeviceExtension->MouseState);
|
||||||
ASSERT(FALSE);
|
ASSERT(FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -258,7 +258,7 @@ MPU401DeviceControl(PDEVICE_OBJECT DeviceObject,
|
||||||
DPRINT("Received IOCTL_MIDI_PLAY\n");
|
DPRINT("Received IOCTL_MIDI_PLAY\n");
|
||||||
Data = (PUCHAR) Irp->AssociatedIrp.SystemBuffer;
|
Data = (PUCHAR) Irp->AssociatedIrp.SystemBuffer;
|
||||||
|
|
||||||
DPRINT("Sending %d bytes of MIDI data to 0x%d:\n", Stack->Parameters.DeviceIoControl.InputBufferLength, DeviceExtension->Port);
|
DPRINT("Sending %d bytes of MIDI data to 0x%x:\n", Stack->Parameters.DeviceIoControl.InputBufferLength, DeviceExtension->Port);
|
||||||
|
|
||||||
for (ByteCount = 0; ByteCount < Stack->Parameters.DeviceIoControl.InputBufferLength; ByteCount ++)
|
for (ByteCount = 0; ByteCount < Stack->Parameters.DeviceIoControl.InputBufferLength; ByteCount ++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -316,7 +316,7 @@ BlasterDeviceControl(PDEVICE_OBJECT DeviceObject,
|
||||||
DPRINT("Received IOCTL_MIDI_PLAY\n");
|
DPRINT("Received IOCTL_MIDI_PLAY\n");
|
||||||
Data = (PUCHAR) Irp->AssociatedIrp.SystemBuffer;
|
Data = (PUCHAR) Irp->AssociatedIrp.SystemBuffer;
|
||||||
|
|
||||||
DPRINT("Sending %d bytes of MIDI data to 0x%d:\n", Stack->Parameters.DeviceIoControl.InputBufferLength, DeviceExtension->Port);
|
DPRINT("Sending %d bytes of MIDI data to 0x%x:\n", Stack->Parameters.DeviceIoControl.InputBufferLength, DeviceExtension->Port);
|
||||||
|
|
||||||
for (ByteCount = 0; ByteCount < Stack->Parameters.DeviceIoControl.InputBufferLength; ByteCount ++)
|
for (ByteCount = 0; ByteCount < Stack->Parameters.DeviceIoControl.InputBufferLength; ByteCount ++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue