Pcbnew, Excellon export: remove an useless line at end of file

This commit is contained in:
jean-pierre charras 2023-11-27 14:08:21 +01:00
parent 15c7f224b3
commit f6bbf49800
1 changed files with 1 additions and 1 deletions

View File

@ -576,6 +576,6 @@ void EXCELLON_WRITER::writeEXCELLONHeader( DRILL_LAYER_PAIR aLayerPair, TYPE_FIL
void EXCELLON_WRITER::writeEXCELLONEndOfFile()
{
// add if minimal here
fputs( "T0\nM30\n", m_file );
fputs( "M30\n", m_file );
fclose( m_file );
}