mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Corrected typos in the minix driver
svn path=/trunk/; revision=1402
This commit is contained in:
parent
9ab512dafc
commit
e9b7a9a972
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
||||||
* PURPOSE: Minix FSD
|
* PURPOSE: Minix FSD
|
||||||
* PROGRAMMER: David Welch (welch@mcmail.com)
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
||||||
* UPDATE HISTORY:
|
* UPDATE HISTORY:
|
||||||
4 */
|
*/
|
||||||
|
|
||||||
/* INCLUDES *****************************************************************/
|
/* INCLUDES *****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@ NTSTATUS STDCALL DriverEntry(PDRIVER_OBJECT _DriverObject,
|
||||||
|
|
||||||
DriverObject = _DriverObject;
|
DriverObject = _DriverObject;
|
||||||
|
|
||||||
RtlInitUnicodeString(&ustr, L"\\Device\\Minux");
|
RtlInitUnicodeString(&ustr, L"\\Device\\Minix");
|
||||||
ret = IoCreateDevice(DriverObject,0,&ustr,
|
ret = IoCreateDevice(DriverObject,0,&ustr,
|
||||||
FILE_DEVICE_PARALLEL_PORT,0,FALSE,&DeviceObject);
|
FILE_DEVICE_PARALLEL_PORT,0,FALSE,&DeviceObject);
|
||||||
if (ret!=STATUS_SUCCESS)
|
if (ret!=STATUS_SUCCESS)
|
||||||
|
|
Loading…
Reference in a new issue