mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:12:55 +00:00
[USBHUB_NEW] Fix x64 warnings.
This commit is contained in:
parent
a1a65e940a
commit
0dfa7356c8
3 changed files with 9 additions and 9 deletions
|
@ -112,8 +112,8 @@ NTAPI
|
|||
USBHUB_DumpingIDs(IN PVOID Id)
|
||||
{
|
||||
PWSTR Ptr;
|
||||
ULONG Length;
|
||||
ULONG TotalLength = 0;
|
||||
size_t Length;
|
||||
size_t TotalLength = 0;
|
||||
|
||||
Ptr = Id;
|
||||
DPRINT("USBHUB_DumpingIDs:\n");
|
||||
|
@ -127,6 +127,6 @@ USBHUB_DumpingIDs(IN PVOID Id)
|
|||
TotalLength += Length;
|
||||
}
|
||||
|
||||
DPRINT("TotalLength: %hu\n", TotalLength);
|
||||
DPRINT("TotalLength: %Iu\n", TotalLength);
|
||||
DPRINT("\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue