Commit 96bf0a54 authored by Lorenzo Marcantonio's avatar Lorenzo Marcantonio

Missing a wxT in call to LogDebug

parent 5b9c3547
......@@ -4101,7 +4101,8 @@ void FPL_CACHE::Save()
abs_lib_name.MakeAbsolute();
tempFileName = wxFileName::CreateTempFileName( abs_lib_name.GetFullPath() );
wxLogDebug( "tempFileName:'%s' m_lib_name:'%s'\n", TO_UTF8( tempFileName ), TO_UTF8( m_lib_name ) );
wxLogDebug( wxT( "tempFileName:'%s' m_lib_name:'%s'\n" ),
TO_UTF8( tempFileName ), TO_UTF8( m_lib_name ) );
FILE* fp = wxFopen( tempFileName, wxT( "w" ) );
if( !fp )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment