mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[CSRSS]: Improve two dprints.
svn path=/trunk/; revision=60288
This commit is contained in:
parent
dd9e5ada7d
commit
8ea614d505
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ _main(int argc,
|
|||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
/* Raise a hard error */
|
||||
DPRINT1("CSRSS: Could not raise IOPL: %x\n", Status);
|
||||
DPRINT1("CSRSS: Could not raise IOPL, Status: 0x%08lx\n", Status);
|
||||
#if 0
|
||||
Status = NtRaiseHardError(STATUS_IO_PRIVILEGE_FAILED,
|
||||
0,
|
||||
|
@ -76,7 +76,7 @@ _main(int argc,
|
|||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
/* Kill us */
|
||||
DPRINT1("CSRSS: CsrServerInitialization failed:% lx\n", Status);
|
||||
DPRINT1("CSRSS: Unable to initialize server, Status: 0x%08lx\n", Status);
|
||||
NtTerminateProcess(NtCurrentProcess(), Status);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue