krnl386: Remove a trace that causes compiler warnings.
This commit is contained in:
parent
6e43f873c3
commit
cf3d58e4dc
1 changed files with 1 additions and 9 deletions
|
@ -989,15 +989,7 @@ DWORD WINAPIV SSCall(
|
|||
FARPROC fun, /* [in] function to call */
|
||||
... /* [in/out] arguments */
|
||||
) {
|
||||
DWORD i,ret;
|
||||
DWORD *args = ((DWORD *)&fun) + 1;
|
||||
|
||||
TRACE("(%ld,0x%08lx,%p,[",nr,flags,fun);
|
||||
for (i = 0; i < nr/4; i++) TRACE("0x%08lx,",args[i]);
|
||||
TRACE("])\n");
|
||||
ret = call_entry_point( fun, nr / sizeof(DWORD), args );
|
||||
TRACE(" returning %ld ...\n",ret);
|
||||
return ret;
|
||||
return call_entry_point( fun, nr / sizeof(DWORD), (DWORD *)&fun + 1 );
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
|
|
Loading…
Add table
Reference in a new issue