winemenubuilder: Print an error message if we are unable to load an lnk file.
authorFrancois Gouget <fgouget@codeweavers.com>
Wed, 11 Mar 2009 16:18:17 +0000 (17:18 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 12 Mar 2009 12:09:53 +0000 (13:09 +0100)
programs/winemenubuilder/winemenubuilder.c

index 69303c77a7ce8bbe1ea355ec17cf106f5f306829..0c42b30be1e30f0857243cf87c0665154ed01874 100644 (file)
@@ -1589,6 +1589,10 @@ static BOOL Process_Link( LPCWSTR linkname, BOOL bWait )
             InvokeShellLinker( sl, fullname, FALSE );
         }
     }
+    else
+    {
+        WINE_ERR("unable to load %s\n", wine_dbgstr_w(linkname));
+    }
 
     IPersistFile_Release( pf );
     IShellLinkW_Release( sl );