1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Fix unused parameter bug reported by Ed Musgrove.

This commit is contained in:
v.audacity 2013-11-16 03:37:46 +00:00
parent 0e38b3c395
commit 53e0aca508

View File

@ -860,7 +860,7 @@ bool FFmpegLibs::InitLibs(wxString libpath_format, bool WXUNUSED(showerr))
// If the directory, where libavformat is, is not in PATH - add it
if (!syspath.Contains(fmtdirsc) && !syspath.Contains(scfmtdir) && !syspath.Contains(fmtdir))
{
wxLogWarning(wxT("FFmpeg directory is not in PATH."), fmtdir.c_str());
wxLogWarning(wxT("FFmpeg directory '%s' is not in PATH."), fmtdir.c_str());
if (syspath.Last() == wxT(';'))
{
wxLogMessage(wxT("Temporarily appending '%s' to PATH..."), fmtdir.c_str());