msi: Remove debugging printf statements.

This commit is contained in:
James Hawkins 2007-05-06 20:43:37 -05:00 committed by Alexandre Julliard
parent 12c33ab8aa
commit e962b0a7df
1 changed files with 1 additions and 4 deletions

View File

@ -22,7 +22,6 @@
#define NONAMELESSSTRUCT
#include <stdarg.h>
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
@ -1105,12 +1104,10 @@ UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
if (rc == ERROR_SUCCESS)
{
rc = MSI_ViewExecute(view, row);
if (rc != ERROR_SUCCESS) printf("MSI_ViewExecute failed: %d\n", rc);
MSI_ViewClose(view);
msiobj_release(&view->hdr);
}
else printf("MSI_DatabaseOpenView failed: %d\n", rc);
msiobj_release(&row->hdr);
return rc;