mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
- Correct an assertion after ARM system call changes in 34366
svn path=/trunk/; revision=36880
This commit is contained in:
parent
d380bdc8d5
commit
154df420fc
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ KiSystemService(IN PKTHREAD Thread,
|
||||||
// Check how many arguments this system call takes
|
// Check how many arguments this system call takes
|
||||||
//
|
//
|
||||||
ArgumentCount = DescriptorTable->Number[Number] / 4;
|
ArgumentCount = DescriptorTable->Number[Number] / 4;
|
||||||
ASSERT(ArgumentCount <= 20);
|
ASSERT(ArgumentCount <= 17);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Copy the register-arguments first
|
// Copy the register-arguments first
|
||||||
|
|
Loading…
Reference in a new issue