Fix another signed/unsigned compare which will never work.

This commit is contained in:
Jeff Young 2020-08-31 16:54:51 +01:00
parent cfdf818878
commit 6488260185
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ void DIALOG_EXPORT_STEP::onExportButton( wxCommandEvent& aEvent )
#ifdef __WXMAC__
// On macOS, we have standalone applications inside the main bundle, so we handle that here:
if( appK2S.GetPath().find( "/Contents/Applications/pcbnew.app/Contents/MacOS" ) != wxNOT_FOUND )
if( appK2S.GetPath().Find( "/Contents/Applications/pcbnew.app/Contents/MacOS" ) != wxNOT_FOUND )
{
appK2S.AppendDir( ".." );
appK2S.AppendDir( ".." );