From 153e1190ea5763ee503844d28464fd49c30b3076 Mon Sep 17 00:00:00 2001 From: Mark Roszko Date: Tue, 7 Nov 2023 11:20:18 +0000 Subject: [PATCH] Fix build due to previous cli change --- pcbnew/pcbnew_jobs_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/pcbnew_jobs_handler.cpp b/pcbnew/pcbnew_jobs_handler.cpp index 114a82936c..5b8730b8db 100644 --- a/pcbnew/pcbnew_jobs_handler.cpp +++ b/pcbnew/pcbnew_jobs_handler.cpp @@ -465,7 +465,7 @@ int PCBNEW_JOBS_HANDLER::JobExportDrill( JOB* aJob ) wxFileName fn( aDrillJob->m_outputDir + wxT( "/" ) ); if( !fn.Mkdir( wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) ) { - m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR ); + wxFprintf( stderr, _( "Failed to create output directory\n" ) ); return CLI::EXIT_CODES::ERR_INVALID_OUTPUT_CONFLICT; }