msi: Fix a trace.
authorHans Leidekker <hans@codeweavers.com>
Tue, 22 Feb 2011 12:16:55 +0000 (13:16 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 22 Feb 2011 12:34:33 +0000 (13:34 +0100)
dlls/msi/custom.c

index cb7a48c82e5068bc7323b96be1e3f6bb68a4aa2e..c3f230275663c489dce1d4a47ea8fd19a0365622 100644 (file)
@@ -424,7 +424,7 @@ static MSIBINARY *create_temp_binary( MSIPACKAGE *package, LPCWSTR source, BOOL
     /* keep a reference to prevent the dll from being unloaded */
     if (dll && !(binary->module = LoadLibraryW( tmpfile )))
     {
-        ERR("failed to load dll %s (%u)\n", debugstr_w( binary->tmpfile ), GetLastError() );
+        ERR("failed to load dll %s (%u)\n", debugstr_w( tmpfile ), GetLastError() );
         DeleteFileW( tmpfile );
         msi_free( binary );
         return NULL;