From d28052066ddc1a8ea1acda1e7f8284970524360d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 4 Mar 2015 14:31:56 +0900 Subject: [PATCH] shell32/tests: Use NULL for a null pointer. --- dlls/shell32/tests/shlfileop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index 07e4ee24df0..6bb28e14d27 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -2429,7 +2429,7 @@ static void test_unicode(void) shfoW.hwnd = NULL; shfoW.wFunc = FO_DELETE; shfoW.pFrom = UNICODE_PATH; - shfoW.pTo = '\0'; + shfoW.pTo = NULL; shfoW.fFlags = FOF_NOCONFIRMATION | FOF_SILENT | FOF_NOERRORUI; shfoW.hNameMappings = NULL; shfoW.lpszProgressTitle = NULL;