From dfb1f4f55b5cdf5ef31641860ca449b5c3df3058 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Fri, 21 Jul 2006 14:04:09 +0900 Subject: [PATCH] msi: Use TRACE not FIXME for already implemented functions. --- dlls/msi/msi.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index 61c4d1aa233..8f11de9a5fc 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -224,7 +224,7 @@ UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine) MSIPACKAGE *package = NULL; UINT r; - FIXME("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine)); + TRACE("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine)); r = MSI_OpenPackageW( szPackagePath, &package ); if (r == ERROR_SUCCESS) @@ -276,7 +276,7 @@ UINT WINAPI MsiConfigureProductExW(LPCWSTR szProduct, int iInstallLevel, ' ','I','n','s','t','a','l','l','e','d','=','1',0}; LPWSTR commandline; - FIXME("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState, + TRACE("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState, debugstr_w(szCommandLine)); if (eInstallState != INSTALLSTATE_LOCAL && @@ -391,8 +391,6 @@ UINT WINAPI MsiConfigureProductA(LPCSTR szProduct, int iInstallLevel, UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel, INSTALLSTATE eInstallState) { - FIXME("%s %d %d\n", debugstr_w(szProduct), iInstallLevel, eInstallState); - return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL); }