mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
removed obsolete typecast in AllocConsole()
svn path=/trunk/; revision=13487
This commit is contained in:
parent
ca15298d31
commit
a5f97a39da
1 changed files with 1 additions and 1 deletions
|
@ -1356,7 +1356,7 @@ BOOL STDCALL AllocConsole(VOID)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
Request.Data.AllocConsoleRequest.CtrlDispatcher = (PCONTROLDISPATCHER) &ConsoleControlDispatcher;
|
Request.Data.AllocConsoleRequest.CtrlDispatcher = ConsoleControlDispatcher;
|
||||||
|
|
||||||
Request.Type = CSRSS_ALLOC_CONSOLE;
|
Request.Type = CSRSS_ALLOC_CONSOLE;
|
||||||
Status = CsrClientCallServer( &Request, &Reply, sizeof( CSRSS_API_REQUEST ), sizeof( CSRSS_API_REPLY ) );
|
Status = CsrClientCallServer( &Request, &Reply, sizeof( CSRSS_API_REQUEST ), sizeof( CSRSS_API_REPLY ) );
|
||||||
|
|
Loading…
Reference in a new issue