Commit 2d1a7e09 authored by jean-pierre charras's avatar jean-pierre charras

Csv Boom file: fix a minor error in commit 3818

parent 978ae918
...@@ -553,9 +553,8 @@ bool BOM_LISTER::PrintComponentsListByReferenceCsvForm( FILE* aFile ) ...@@ -553,9 +553,8 @@ bool BOM_LISTER::PrintComponentsListByReferenceCsvForm( FILE* aFile )
msg = returnURLItemLocation( msg = returnURLItemLocation(
m_cmplist[ii].GetSheetPath().PathHumanReadable(), m_cmplist[ii].GetSheetPath().PathHumanReadable(),
comp->GetPosition() ); comp->GetPosition() );
msg << m_separatorSymbol;
fprintf( m_outFile, "%s", TO_UTF8( msg ) ); fprintf( m_outFile, "%c%s", m_separatorSymbol, TO_UTF8( msg ) );
} }
if( groupRefs ) if( groupRefs )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment