diff options
Diffstat (limited to 'source/Interpreter/CommandAlias.cpp')
-rw-r--r-- | source/Interpreter/CommandAlias.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/Interpreter/CommandAlias.cpp b/source/Interpreter/CommandAlias.cpp index a4b0a0c55c0e..078eb73a7a87 100644 --- a/source/Interpreter/CommandAlias.cpp +++ b/source/Interpreter/CommandAlias.cpp @@ -158,8 +158,7 @@ void CommandAlias::GetAliasExpansion(StreamString &help_string) const { help_string.Printf(" %s", value.c_str()); } else { help_string.Printf(" %s", opt.c_str()); - if ((value.compare("<no-argument>") != 0) && - (value.compare("<need-argument") != 0)) { + if ((value != "<no-argument>") && (value != "<need-argument")) { help_string.Printf(" %s", value.c_str()); } } |