diff --git a/reactos/ChangeLog b/reactos/ChangeLog index 16a39332003..a6c46456e52 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,7 @@ +2004-02-23 Casper S. Hornstrup + + * tools/regtests.c (KMSTUB): Correct device name. + 2004-02-22 Ge van Geldorp * Implement keyboard navigation for menus diff --git a/reactos/tools/regtests.c b/reactos/tools/regtests.c index 2794393c1bf..ea28f56913b 100755 --- a/reactos/tools/regtests.c +++ b/reactos/tools/regtests.c @@ -426,7 +426,7 @@ static char KMSTUB[] = "\n" " if (KMRegTestsDeviceObject == NULL)\n" " {\n" - " RtlInitUnicodeString(&DriverName, L\"\\Device\\KMRegTests\");\n" + " RtlInitUnicodeString(&DriverName, L\"\\\\Device\\\\KMRegTests\");\n" " Status = IoGetDeviceObjectPointer(&DriverName, FILE_WRITE_ATTRIBUTES,\n" " &KMRegTestsFileObject, &KMRegTestsDeviceObject);\n" " if (!NT_SUCCESS(Status)) return;\n"