[ros-diffs] [sginsberg] 36880: - Correct an assertion after ARM system call changes in 34366

sginsberg at svn.reactos.org sginsberg at svn.reactos.org
Tue Oct 21 23:02:17 CEST 2008


Author: sginsberg
Date: Tue Oct 21 16:02:16 2008
New Revision: 36880

URL: http://svn.reactos.org/svn/reactos?rev=36880&view=rev
Log:
- Correct an assertion after ARM system call changes in 34366

Modified:
    trunk/reactos/ntoskrnl/ke/arm/usercall.c

Modified: trunk/reactos/ntoskrnl/ke/arm/usercall.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/arm/usercall.c?rev=36880&r1=36879&r2=36880&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/ke/arm/usercall.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/arm/usercall.c [iso-8859-1] Tue Oct 21 16:02:16 2008
@@ -148,7 +148,7 @@
     // Check how many arguments this system call takes
     //
     ArgumentCount = DescriptorTable->Number[Number] / 4;
-    ASSERT(ArgumentCount <= 20);
+    ASSERT(ArgumentCount <= 17);
     
     //
     // Copy the register-arguments first



More information about the Ros-diffs mailing list