summaryrefslogtreecommitdiff
path: root/src/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/chat.cpp2
-rw-r--r--src/actions/commands.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp
index 150e1fa56..d3e869f5c 100644
--- a/src/actions/chat.cpp
+++ b/src/actions/chat.cpp
@@ -211,7 +211,7 @@ static bool splitWhisper(const std::string &args,
}
else
{
- const size_t pos = args.find(" ");
+ const size_t pos = args.find(' ');
if (pos != std::string::npos)
{
recvnick = args.substr(0, pos);
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index df86fefc2..74c7bfe52 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -702,7 +702,7 @@ impHandler(openUrl)
impHandler(execute)
{
- const size_t idx = event.args.find(" ");
+ const size_t idx = event.args.find(' ');
std::string name;
std::string params;
if (idx == std::string::npos)