Add \n to report for cli
Fixes https://gitlab.com/kicad/code/kicad/-/issues/13704
This commit is contained in:
parent
ffaaa17d1c
commit
fb57eac5f9
|
@ -101,9 +101,9 @@ void EESCHEMA_JOBS_HANDLER::InitRenderSettings( KIGFX::SCH_RENDER_SETTINGS* aRen
|
||||||
REPORTER& EESCHEMA_JOBS_HANDLER::Report( const wxString& aText, SEVERITY aSeverity )
|
REPORTER& EESCHEMA_JOBS_HANDLER::Report( const wxString& aText, SEVERITY aSeverity )
|
||||||
{
|
{
|
||||||
if( aSeverity == RPT_SEVERITY_ERROR )
|
if( aSeverity == RPT_SEVERITY_ERROR )
|
||||||
wxFprintf( stderr, aText );
|
wxFprintf( stderr, wxS( "%s\n" ), aText );
|
||||||
else
|
else
|
||||||
wxPrintf( aText );
|
wxPrintf( wxS( "%s\n" ), aText );
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue