Commit cf3d58e4 authored by Alexandre Julliard's avatar Alexandre Julliard

krnl386: Remove a trace that causes compiler warnings.

parent 6e43f873
......@@ -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 );
}
/**********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment