From 12bec38f1253be90c5ffe50feadcd94e8162762e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 30 Jun 2015 07:53:26 -0400 Subject: [PATCH] Filter: Typo (thanks to Peter Rochen) --- src/Filter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Filter.cpp b/src/Filter.cpp index a83aacbec..42774d87f 100644 --- a/src/Filter.cpp +++ b/src/Filter.cpp @@ -227,7 +227,7 @@ bool Filter::pendingOnly () if (a._lextype == Lexer::Type::op && raw == "or") ++countOr; if (a._lextype == Lexer::Type::op && raw == "xor") ++countXor; - if (a._lextype == Lexer::Type::op && raw == "not") ++countXor; + if (a._lextype == Lexer::Type::op && raw == "not") ++countNot; if (a._lextype == Lexer::Type::dom && canonical == "status") ++countStatus; if ( raw == "pending") ++countPending; if ( raw == "waiting") ++countPending;