mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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
|
||||
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++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue