ntdll: Fix typo in HAVE_STRUCT_MTGET_MT_GSTAT ifdef.

This commit is contained in:
Francois Gouget 2006-02-07 21:18:19 +01:00 committed by Alexandre Julliard
parent d3aa2313b8
commit 6fcc7b5bb0
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ static NTSTATUS TAPE_GetMediaParams( int fd, TAPE_GET_MEDIA_PARAMETERS *data )
data->BlockSize = get.mt_dsreg & MT_ST_BLKSIZE_MASK;
#endif
data->PartitionCount = 1;
#ifdef HAVE_STRUCT_MTGET_GSTAT
#ifdef HAVE_STRUCT_MTGET_MT_GSTAT
data->WriteProtected = GMT_WR_PROT(get.mt_gstat);
#else
data->WriteProtected = 0;