mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[HALx86]
- Hey Arch, it's an USHORT! svn path=/trunk/; revision=54471
This commit is contained in:
parent
2a0fd0c988
commit
f02069cdbe
1 changed files with 2 additions and 2 deletions
|
@ -377,7 +377,7 @@ VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
HalpStoreAndClearIopm(VOID)
|
HalpStoreAndClearIopm(VOID)
|
||||||
{
|
{
|
||||||
ULONG i, j;
|
USHORT i, j;
|
||||||
PUSHORT Entry = HalpSavedIoMap;
|
PUSHORT Entry = HalpSavedIoMap;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -394,7 +394,7 @@ HalpStoreAndClearIopm(VOID)
|
||||||
// Save it
|
// Save it
|
||||||
//
|
//
|
||||||
ASSERT(j < 32);
|
ASSERT(j < 32);
|
||||||
HalpSavedIoMapData[j][0] = (UCHAR)i;
|
HalpSavedIoMapData[j][0] = i;
|
||||||
HalpSavedIoMapData[j][1] = *Entry;
|
HalpSavedIoMapData[j][1] = *Entry;
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue