1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

krnl386: Remove a trace that causes compiler warnings.

This commit is contained in:
Alexandre Julliard 2023-01-24 22:18:34 +01:00
parent 6e43f873c3
commit cf3d58e4dc

View file

@ -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 );
}
/**********************************************************************