Gerald Pfeifer : ntdll/tests: Remove unused variable from test_query_volume_information_file.

Alexandre Julliard julliard at winehq.org
Wed Nov 24 11:28:40 CST 2010


Module: wine
Branch: master
Commit: 8c7164603f0df6d8b0d34be95bc19e7746049115
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8c7164603f0df6d8b0d34be95bc19e7746049115

Author: Gerald Pfeifer <gerald at 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;




More information about the wine-cvs mailing list