[USBHUB_NEW] Fix x64 warnings.

This commit is contained in:
Thomas Faber 2018-09-01 18:01:40 +02:00
parent a1a65e940a
commit 0dfa7356c8
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 9 additions and 9 deletions

View file

@ -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");
}