From bb25ff0f3a105f569de04572bc873f2dced3868c Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Sat, 4 Dec 1999 21:11:00 +0000 Subject: [PATCH] Minor changes. svn path=/trunk/; revision=824 --- reactos/subsys/smss/init.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/reactos/subsys/smss/init.c b/reactos/subsys/smss/init.c index 25e7777123d..4c35566796b 100644 --- a/reactos/subsys/smss/init.c +++ b/reactos/subsys/smss/init.c @@ -1,4 +1,4 @@ -/* $Id: init.c,v 1.4 1999/12/01 15:18:54 ekohl Exp $ +/* $Id: init.c,v 1.5 1999/12/04 21:11:00 ea Exp $ * * init.c - Session Manager initialization * @@ -96,7 +96,7 @@ InitSessionManager ( } #ifndef NDEBUG - DisplayString (L"SmApiPort created...\n"); + DisplayString (L"SM: \\SmApiPort created...\n"); #endif /* Create two threads for "\SmApiPort" */ @@ -128,7 +128,7 @@ InitSessionManager ( if (!NT_SUCCESS(Status)) return FALSE; #ifndef NDEBUG - DisplayString (L"System Environment created\n"); + DisplayString (L"SM: System Environment created\n"); #endif /* FIXME: Define symbolic links to kernel devices (MS-DOS names) */ @@ -160,7 +160,7 @@ InitSessionManager ( /* Start the Win32 subsystem (csrss.exe) */ #if 0 - DisplayString (L"Executing csrss.exe\n"); + DisplayString (L"SM: Executing csrss.exe\n"); RtlInitUnicodeString (&UnicodeString, L"\\??\\C:\\reactos\\system32\\csrss.exe"); @@ -175,13 +175,13 @@ InitSessionManager ( if (!NT_SUCCESS(Status)) { - DisplayString (L"Loading csrss.exe failed!\n"); + DisplayString (L"SM: Loading csrss.exe failed!\n"); return FALSE; } #endif /* Start the simple shell (shell.exe) */ - DisplayString (L"Executing shell\n"); + DisplayString (L"SM: Executing shell\n"); RtlInitUnicodeString (&UnicodeString, L"\\??\\C:\\reactos\\system32\\shell.exe"); @@ -201,7 +201,7 @@ InitSessionManager ( if (!NT_SUCCESS(Status)) { - DisplayString (L"Loading shell.exe failed!\n"); + DisplayString (L"SM: Loading shell.exe failed!\n"); #if 0 NtTerminateProcess (Children[CHILD_CSRSS], 0); @@ -229,7 +229,7 @@ InitSessionManager ( return FALSE; } #ifndef NDEBUG - DisplayString (L"DbgSsApiPort created...\n"); + DisplayString (L"SM: DbgSsApiPort created...\n"); #endif /* Create the \DbgUiApiPort object (LPC) */ @@ -252,7 +252,7 @@ InitSessionManager ( return FALSE; } #ifndef NDEBUG - DisplayString (L"DbgUiApiPort created...\n"); + DisplayString (L"SM: DbgUiApiPort created...\n"); #endif return TRUE;