krnl386.exe16: Avoid hardcoding the Unicode string literal lengths.

This commit is contained in:
Francois Gouget 2011-12-16 13:07:35 +01:00 committed by Alexandre Julliard
parent 1c59b91d64
commit 95577f3368
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ static WORD INT21_GetHeapSelector( CONTEXT *context )
*/
static BOOL INT21_FillDrivePB( BYTE drive )
{
WCHAR drivespec[3] = {'A', ':', 0};
WCHAR drivespec[] = {'A', ':', 0};
INT21_HEAP *heap = INT21_GetHeapPointer();
INT21_DPB *dpb;
UINT drivetype;