- Hey Arch, it's an USHORT!

svn path=/trunk/; revision=54471
This commit is contained in:
Jérôme Gardou 2011-11-21 12:17:57 +00:00
parent 2a0fd0c988
commit f02069cdbe

View file

@ -377,7 +377,7 @@ VOID
NTAPI
HalpStoreAndClearIopm(VOID)
{
ULONG i, j;
USHORT i, j;
PUSHORT Entry = HalpSavedIoMap;
//
@ -394,7 +394,7 @@ HalpStoreAndClearIopm(VOID)
// Save it
//
ASSERT(j < 32);
HalpSavedIoMapData[j][0] = (UCHAR)i;
HalpSavedIoMapData[j][0] = i;
HalpSavedIoMapData[j][1] = *Entry;
j++;
}