msi/tests: Prevent a popup on Windows NT.

This commit is contained in:
Paul Vriens 2010-09-20 11:26:09 +02:00 committed by Alexandre Julliard
parent 76ba45e5ab
commit 3d6a57a494

View file

@ -4864,7 +4864,7 @@ static void delete_pfmsitest_files(void)
shfl.wFunc = FO_DELETE;
shfl.pFrom = path;
shfl.pTo = NULL;
shfl.fFlags = FOF_FILESONLY | FOF_NOCONFIRMATION | FOF_NORECURSION | FOF_SILENT;
shfl.fFlags = FOF_FILESONLY | FOF_NOCONFIRMATION | FOF_NORECURSION | FOF_SILENT | FOF_NOERRORUI;
SHFileOperation(&shfl);