From c5ef45e5ef12a7ff373face488d063b85f95b45f Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Fri, 24 Sep 2010 17:08:56 +0200 Subject: [PATCH] msi: A progid without a class is not an error. --- dlls/msi/classes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/classes.c b/dlls/msi/classes.c index 30ee36b4bfd..59438058db7 100644 --- a/dlls/msi/classes.c +++ b/dlls/msi/classes.c @@ -1072,7 +1072,7 @@ static UINT register_progid( const MSIPROGID* progid ) if (clsid) msi_reg_set_subkey_val( hkey, szCLSID, NULL, clsid ); else - ERR("%s has no class\n", debugstr_w( progid->ProgID ) ); + TRACE("%s has no class\n", debugstr_w( progid->ProgID ) ); if (progid->Description) msi_reg_set_val_str( hkey, NULL, progid->Description ); -- 2.11.4.GIT