Quote base64 data in PCB

This commit is contained in:
Jon Evans 2023-11-24 18:20:16 -05:00
parent ae66ce68b5
commit 19cfc18cf8
1 changed files with 1 additions and 1 deletions

View File

@ -1058,7 +1058,7 @@ void PCB_PLUGIN::format( const PCB_REFERENCE_IMAGE* aBitmap, int aNestLevel ) co
while( first < out.Length() )
{
m_out->Print( 0, "\n" );
m_out->Print( aNestLevel + 2, "%s", TO_UTF8( out( first, MIME_BASE64_LENGTH ) ) );
m_out->Print( aNestLevel + 2, "\"%s\"", TO_UTF8( out( first, MIME_BASE64_LENGTH ) ) );
first += MIME_BASE64_LENGTH;
}