Skip to content

Commit

Permalink
make the selfload myalloc size a dword (#1150)
Browse files Browse the repository at this point in the history
  • Loading branch information
cracyc authored Apr 29, 2022
1 parent bd33a3f commit 9868db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion krnl386/ne_segment.c
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ static WORD NE_Ne2MemFlags(WORD flags)
*/
DWORD WINAPI MyAlloc16( WORD wFlags, WORD wSize, WORD wElem )
{
WORD size = wSize << wElem;
DWORD size = wSize << wElem;
HANDLE16 hMem = 0;
WORD gflags = NE_Ne2MemFlags(wFlags);

Expand Down

0 comments on commit 9868db4

Please sign in to comment.