summaryrefslogtreecommitdiffstats
path: root/client/hot_keys.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/hot_keys.cpp')
-rw-r--r--client/hot_keys.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/hot_keys.cpp b/client/hot_keys.cpp
index 2d0b9db4..763ba2ca 100644
--- a/client/hot_keys.cpp
+++ b/client/hot_keys.cpp
@@ -139,9 +139,7 @@ void HotKeysParser::add_hotkey(const std::string& hotkey, const CommandsMap& com
std::string command_name = hotkey.substr(0, key_start);
if (commands_map.find(command_name) == commands_map.end()) {
- char buf[1000];
- snprintf(buf, sizeof(buf), "invalid action bname %s", command_name.c_str());
- THROW(buf);
+ THROW("invalid action bname %s", command_name.c_str());
}
int command_id = commands_map.find(command_name)->second;
std::string keys = hotkey.substr(key_start + 1);