From 549ea93be220b2f4b49217002f58bd711ed70c29 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 3 Jun 2024 10:41:34 -0700 Subject: [PATCH] Fix typo --- eeschema/sch_symbol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_symbol.cpp b/eeschema/sch_symbol.cpp index 5421586879..5ff5b7193f 100644 --- a/eeschema/sch_symbol.cpp +++ b/eeschema/sch_symbol.cpp @@ -2744,7 +2744,7 @@ bool SCH_SYMBOL::operator==( const SCH_ITEM& aOther ) const for( unsigned i = 0; i < m_pins.size(); ++i ) { - if( *m_pins[i] == *symbol.m_pins[i] ) + if( *m_pins[i] != *symbol.m_pins[i] ) return false; }