Fix typos in translatable strings.

fix also a coding style issue.
This commit is contained in:
jean-pierre charras 2023-08-31 10:27:36 +02:00
parent 60af0448c5
commit 5bf0689ac8
2 changed files with 4 additions and 3 deletions

View File

@ -438,14 +438,14 @@ bool FOOTPRINT_EDIT_FRAME::SaveLibraryAs( const wxString& aLibraryPath )
if( !cur )
{
msg = wxString::Format( _( "Unable to find a reader for '%s." ), curLibPath );
msg = wxString::Format( _( "Unable to find a reader for '%s'." ), curLibPath );
DisplayError( this, msg );
return false;
}
if( !dst )
{
msg = wxString::Format( _( "Unable to find a writer for '%s." ), dstLibPath );
msg = wxString::Format( _( "Unable to find a writer for '%s'." ), dstLibPath );
DisplayError( this, msg );
return false;
}

View File

@ -325,10 +325,11 @@ bool PLUGIN::fileStartsWithBinaryHeader( const wxString& aFilePath, const std::v
if( input.IsOk() && !input.Eof() )
{
if (input.GetLength() < aHeader.size())
if( input.GetLength() < aHeader.size() )
return false;
std::vector<uint8_t> parsedHeader(aHeader.size());
if (!input.ReadAll(parsedHeader.data(), parsedHeader.size()))
return false;