If initializing the desktop implementation fails, print "Failed to initialize desktop implementation!", not "Failed to initialize window station implementation!"

svn path=/trunk/; revision=10360
This commit is contained in:
Gregor Anich 2004-08-02 15:07:26 +00:00
parent 0eb15adf43
commit 64a312d97d

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 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 * Entry Point for win32k.sys
*/ */
@ -245,7 +245,7 @@ DllMain (
Status = InitDesktopImpl(); Status = InitDesktopImpl();
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("Failed to initialize window station implementation!\n"); DbgPrint("Failed to initialize desktop implementation!\n");
return STATUS_UNSUCCESSFUL; return STATUS_UNSUCCESSFUL;
} }