diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-10 16:46:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-10 16:46:55 +0300 |
commit | 608dfae22e1b5145210314ca6c7268420dd639c8 (patch) | |
tree | 5f7317be7e895a1f8aede182ea69ef56d456c54f /src/actions/commands.cpp | |
parent | 9eb389060d44672c311a36348036eab297859e7e (diff) | |
download | mv-608dfae22e1b5145210314ca6c7268420dd639c8.tar.gz mv-608dfae22e1b5145210314ca6c7268420dd639c8.tar.bz2 mv-608dfae22e1b5145210314ca6c7268420dd639c8.tar.xz mv-608dfae22e1b5145210314ca6c7268420dd639c8.zip |
Fix some issues found by automatic checks.
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |