ntdll/tests: Remove variable len which is not really used from create_file_test.

This commit is contained in:
Gerald Pfeifer 2010-05-05 00:24:46 +02:00 committed by Alexandre Julliard
parent c5bc2a5d2f
commit b8ee145992
1 changed files with 1 additions and 2 deletions

View File

@ -163,9 +163,8 @@ static void create_file_test(void)
OBJECT_ATTRIBUTES attr;
IO_STATUS_BLOCK io;
UNICODE_STRING nameW;
UINT len;
len = GetCurrentDirectoryW( MAX_PATH, path );
GetCurrentDirectoryW( MAX_PATH, path );
pRtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL );
attr.Length = sizeof(attr);
attr.RootDirectory = 0;