Commit 95577f33 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 1c59b91d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment