aboutsummaryrefslogtreecommitdiff
path: root/src/Keys.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Keys.cc')
-rw-r--r--src/Keys.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index 19689f7..172d913 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -355,9 +355,9 @@ void Keys::loadDefaults() {
355 355
356bool Keys::addBinding(const string &linebuffer) { 356bool Keys::addBinding(const string &linebuffer) {
357 357
358 vector<string> val;
359 // Parse arguments 358 // Parse arguments
360 FbTk::StringUtil::stringtok(val, linebuffer.c_str()); 359 vector<string> val;
360 FbTk::StringUtil::stringtok(val, linebuffer);
361 361
362 // must have at least 1 argument 362 // must have at least 1 argument
363 if (val.empty()) 363 if (val.empty())