From 2d1a7e099beedb37db06a9f2e981f08384e4c9bd Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 26 Nov 2012 20:14:38 +0100 Subject: [PATCH] Csv Boom file: fix a minor error in commit 3818 --- eeschema/build_BOM.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eeschema/build_BOM.cpp b/eeschema/build_BOM.cpp index a20521828d..b620a052ae 100644 --- a/eeschema/build_BOM.cpp +++ b/eeschema/build_BOM.cpp @@ -553,9 +553,8 @@ bool BOM_LISTER::PrintComponentsListByReferenceCsvForm( FILE* aFile ) msg = returnURLItemLocation( m_cmplist[ii].GetSheetPath().PathHumanReadable(), comp->GetPosition() ); - msg << m_separatorSymbol; - fprintf( m_outFile, "%s", TO_UTF8( msg ) ); + fprintf( m_outFile, "%c%s", m_separatorSymbol, TO_UTF8( msg ) ); } if( groupRefs )