shell32/tests: Use NULL for a null pointer.

This commit is contained in:
Alexandre Julliard 2015-03-04 14:31:56 +09:00
parent 65180fb2e8
commit d28052066d
1 changed files with 1 additions and 1 deletions

View File

@ -2429,7 +2429,7 @@ static void test_unicode(void)
shfoW.hwnd = NULL; shfoW.hwnd = NULL;
shfoW.wFunc = FO_DELETE; shfoW.wFunc = FO_DELETE;
shfoW.pFrom = UNICODE_PATH; shfoW.pFrom = UNICODE_PATH;
shfoW.pTo = '\0'; shfoW.pTo = NULL;
shfoW.fFlags = FOF_NOCONFIRMATION | FOF_SILENT | FOF_NOERRORUI; shfoW.fFlags = FOF_NOCONFIRMATION | FOF_SILENT | FOF_NOERRORUI;
shfoW.hNameMappings = NULL; shfoW.hNameMappings = NULL;
shfoW.lpszProgressTitle = NULL; shfoW.lpszProgressTitle = NULL;