Fix an issue on MacOS.

This commit is contained in:
jean-pierre charras 2017-08-30 18:32:41 +02:00
parent 50164e9968
commit 3ac87f6969
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ bool GERBER_JOBFILE_WRITER::CreateJobFile( const wxString& aFullFilename )
if( header[ii].Contains( "TF.SameCoordinates" ) )
continue; // This attribute is not useful in job file, skip it
fputs( header[ii], jobFile );
fputs( TO_UTF8( header[ii] ), jobFile );
fputs( "\n", jobFile );
}