Module: wine Branch: master Commit: 8c7164603f0df6d8b0d34be95bc19e7746049115 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8c7164603f0df6d8b0d34be95b...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Wed Nov 24 00:43:24 2010 +0100
ntdll/tests: Remove unused variable from test_query_volume_information_file.
---
dlls/ntdll/tests/file.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c index 1b73dd9..285d9c5 100644 --- a/dlls/ntdll/tests/file.c +++ b/dlls/ntdll/tests/file.c @@ -1468,11 +1468,10 @@ static void test_query_volume_information_file(void) OBJECT_ATTRIBUTES attr; IO_STATUS_BLOCK io; UNICODE_STRING nameW; - UINT len; FILE_FS_VOLUME_INFORMATION *ffvi; BYTE buf[sizeof(FILE_FS_VOLUME_INFORMATION) + MAX_PATH * sizeof(WCHAR)];
- len = GetWindowsDirectoryW( path, MAX_PATH ); + GetWindowsDirectoryW( path, MAX_PATH ); pRtlDosPathNameToNtPathName_U( path, &nameW, NULL, NULL ); attr.Length = sizeof(attr); attr.RootDirectory = 0;