From a2673c2cc4af635b37cd693539e2a663085d40a0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 19 Sep 2010 22:23:57 +0000 Subject: [PATCH] - fixed a misplaced ')' in addkeysection. SVN r2836 (trunk) --- src/keysections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keysections.cpp b/src/keysections.cpp index 3da17fb38..94c551002 100644 --- a/src/keysections.cpp +++ b/src/keysections.cpp @@ -105,7 +105,7 @@ CCMD (addkeysection) for (unsigned i = 0; i < KeySections.Size(); i++) { - if (KeySections[i].mTitle.CompareNoCase(argv[2] == 0)) + if (KeySections[i].mTitle.CompareNoCase(argv[2]) == 0) { CurrentKeySection = i; return;