winemenubuilder: Print an error message if we are unable to load an lnk file.

This commit is contained in:
Francois Gouget 2009-03-11 17:18:17 +01:00 committed by Alexandre Julliard
parent 9b6d3676a0
commit dfd09c310c
1 changed files with 4 additions and 0 deletions

View 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 );