From 9b2dac8df6466a69a4fdb7dfeb56f5c55c4e0d33 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 17 Nov 2020 14:56:34 +0100 Subject: [PATCH] fix error in commit 993a684. --- eeschema/sch_plugins/kicad/sch_sexpr_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_plugins/kicad/sch_sexpr_plugin.cpp b/eeschema/sch_plugins/kicad/sch_sexpr_plugin.cpp index 3efb3bb34f..48eca5db59 100644 --- a/eeschema/sch_plugins/kicad/sch_sexpr_plugin.cpp +++ b/eeschema/sch_plugins/kicad/sch_sexpr_plugin.cpp @@ -1608,7 +1608,7 @@ void SCH_SEXPR_PLUGIN_CACHE::SaveSymbol( LIB_PART* aSymbol, OUTPUTFORMATTER& aFo name = aFormatter.Quotew( unitName ); // Add quotes and escape chars like ") name.pop_back(); // Remove last char: the quote ending the string. - aFormatter.Print( aNestLevel + 1, "(symbol \%s_%d_%d\"\n", + aFormatter.Print( aNestLevel + 1, "(symbol %s_%d_%d\"\n", name.c_str(), unit.m_unit, unit.m_convert ); for( auto item : unit.m_items )