From 64a312d97d845afb13e2e89932e1f65e43866f34 Mon Sep 17 00:00:00 2001 From: Gregor Anich Date: Mon, 2 Aug 2004 15:07:26 +0000 Subject: [PATCH] If initializing the desktop implementation fails, print "Failed to initialize desktop implementation!", not "Failed to initialize window station implementation!" svn path=/trunk/; revision=10360 --- reactos/subsys/win32k/main/dllmain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/main/dllmain.c b/reactos/subsys/win32k/main/dllmain.c index a8eb18103fa..4ee84c487bc 100644 --- a/reactos/subsys/win32k/main/dllmain.c +++ b/reactos/subsys/win32k/main/dllmain.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: dllmain.c,v 1.77 2004/07/30 09:16:06 weiden Exp $ +/* $Id: dllmain.c,v 1.78 2004/08/02 15:07:26 blight Exp $ * * Entry Point for win32k.sys */ @@ -245,7 +245,7 @@ DllMain ( Status = InitDesktopImpl(); if (!NT_SUCCESS(Status)) { - DbgPrint("Failed to initialize window station implementation!\n"); + DbgPrint("Failed to initialize desktop implementation!\n"); return STATUS_UNSUCCESSFUL; }