Corrected typos in the minix driver

svn path=/trunk/; revision=1402
This commit is contained in:
David Welch 2000-10-11 20:57:19 +00:00
parent 9ab512dafc
commit e9b7a9a972
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
* PURPOSE: Minix FSD
* PROGRAMMER: David Welch (welch@mcmail.com)
* UPDATE HISTORY:
4 */
*/
/* INCLUDES *****************************************************************/

View file

@ -104,7 +104,7 @@ NTSTATUS STDCALL DriverEntry(PDRIVER_OBJECT _DriverObject,
DriverObject = _DriverObject;
RtlInitUnicodeString(&ustr, L"\\Device\\Minux");
RtlInitUnicodeString(&ustr, L"\\Device\\Minix");
ret = IoCreateDevice(DriverObject,0,&ustr,
FILE_DEVICE_PARALLEL_PORT,0,FALSE,&DeviceObject);
if (ret!=STATUS_SUCCESS)