From ff7da47aa9374528c442a77afa485859cd9225c2 Mon Sep 17 00:00:00 2001 From: Fredrik Holmqvist Date: Thu, 23 Jul 2015 10:48:41 +0200 Subject: [PATCH] Spelling error on notCondition. --- src/servers/launch/Conditions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/launch/Conditions.cpp b/src/servers/launch/Conditions.cpp index 44a5164f0d..ad70031d82 100644 --- a/src/servers/launch/Conditions.cpp +++ b/src/servers/launch/Conditions.cpp @@ -467,6 +467,6 @@ Conditions::AddNotSafeMode(Condition* condition) NotCondition* notCondition = new NotCondition(); notCondition->AddCondition(new SafeModeCondition()); - andCondition->AddCondition(notCondtion); + andCondition->AddCondition(notCondition); return andCondition; }