From 465823fcc7725658e7701cf0d98371955283a469 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Mon, 4 Jun 2001 11:27:54 +0000 Subject: [PATCH] Default is screen debug output svn path=/trunk/; revision=1942 --- reactos/ntoskrnl/ke/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ke/main.c b/reactos/ntoskrnl/ke/main.c index ccfaead247a..9140a46eea2 100644 --- a/reactos/ntoskrnl/ke/main.c +++ b/reactos/ntoskrnl/ke/main.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: main.c,v 1.96 2001/06/04 11:26:12 chorns Exp $ +/* $Id: main.c,v 1.97 2001/06/04 11:27:54 chorns Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/ke/main.c @@ -660,7 +660,7 @@ _main (ULONG MultiBootMagic, PLOADER_PARAMETER_BLOCK _LoaderBlock) * This should be done by the boot loader. */ strcpy (KeLoaderCommandLine, - "multi(0)disk(0)rdisk(0)partition(1)\\reactos /DEBUGPORT=COM1"); + "multi(0)disk(0)rdisk(0)partition(1)\\reactos /DEBUGPORT=SCREEN"); strcat (KeLoaderCommandLine, (PUCHAR)KeLoaderBlock.CommandLine); KeLoaderBlock.CommandLine = (ULONG)KeLoaderCommandLine;