mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:26:00 +00:00
- Changed DbgPrint to DPRINT in DriverEntry.
svn path=/trunk/; revision=8576
This commit is contained in:
parent
877788b63b
commit
8aad973151
2 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: msfs.c,v 1.7 2004/02/10 16:22:56 navaraf Exp $
|
||||
/* $Id: msfs.c,v 1.8 2004/03/07 20:33:25 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -27,7 +27,7 @@ DriverEntry(PDRIVER_OBJECT DriverObject,
|
|||
UNICODE_STRING DeviceName;
|
||||
NTSTATUS Status;
|
||||
|
||||
DbgPrint("Mailslot FSD 0.0.1\n");
|
||||
DPRINT("Mailslot FSD 0.0.1\n");
|
||||
|
||||
DriverObject->Flags = 0;
|
||||
DriverObject->MajorFunction[IRP_MJ_CREATE] = MsfsCreate;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: npfs.c,v 1.8 2004/02/10 16:22:56 navaraf Exp $
|
||||
/* $Id: npfs.c,v 1.9 2004/03/07 20:33:25 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -26,7 +26,7 @@ DriverEntry(PDRIVER_OBJECT DriverObject,
|
|||
UNICODE_STRING DeviceName;
|
||||
NTSTATUS Status;
|
||||
|
||||
DbgPrint("Named Pipe FSD 0.0.2\n");
|
||||
DPRINT("Named Pipe FSD 0.0.2\n");
|
||||
|
||||
DriverObject->MajorFunction[IRP_MJ_CREATE] = NpfsCreate;
|
||||
DriverObject->MajorFunction[IRP_MJ_CREATE_NAMED_PIPE] =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue