From 4bed2e57cb96213ecf8bad9f69b9645af8e68339 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Tue, 1 Aug 2023 19:59:58 -0400 Subject: [PATCH] Fix msvc being unhappy (cherry picked from commit ca4d6e8d1d3e9abc566c44d02cb3adaeb88f32c0) --- pcbnew/router/pns_shove.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/router/pns_shove.cpp b/pcbnew/router/pns_shove.cpp index 7285c42178..c6057489d7 100644 --- a/pcbnew/router/pns_shove.cpp +++ b/pcbnew/router/pns_shove.cpp @@ -1380,7 +1380,7 @@ SHOVE::SHOVE_STATUS SHOVE::shoveIteration( int aIter ) PNS_DBG( Dbg(), Message, wxString::Format( wxT( "NI: %s (%s)" ), ni->Format(), ni->Parent() ? ni->Parent()->GetItemDescription( &up ) - : "null" ) ); + : wxString( wxT( "null" ) ) ) ); unwindLineStack( ni );