From a7ae5c810ab238a78073f9d9b930bd69aba32f0a Mon Sep 17 00:00:00 2001 From: ika Date: Tue, 9 Oct 2012 18:00:27 +0400 Subject: [PATCH] 0023266: cppcheck warning: Logical disjunction always evaluates to true Logical disjunction changed to Logical conjunction, it evaluates true only then number of parameters isn't right. --- src/QANewDBRepNaming/QANewDBRepNaming_FeatureCommands.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QANewDBRepNaming/QANewDBRepNaming_FeatureCommands.cxx b/src/QANewDBRepNaming/QANewDBRepNaming_FeatureCommands.cxx index 001547ba57..f4f00ca2a8 100755 --- a/src/QANewDBRepNaming/QANewDBRepNaming_FeatureCommands.cxx +++ b/src/QANewDBRepNaming/QANewDBRepNaming_FeatureCommands.cxx @@ -101,7 +101,7 @@ static Standard_Integer QANewDBRepNaming_NameBooleanOperationFeat (Draw_Interpre Standard_Integer nb, const char ** arg) { - if (nb != 6 || nb != 7) { + if (nb != 6 && nb != 7) { di << "QANewDBRepNaming_NameBooleanOperationFeat : Error" << "\n"; return 1; }