aboutsummaryrefslogtreecommitdiff
path: root/src/WorkspaceCmd.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2014-07-22 20:25:47 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2014-07-22 20:25:47 (GMT)
commit026343b6b13024c56e9273f5012076536965bd27 (patch)
treebd0bcd13fc8b2a00db3286fb49ece82a15446246 /src/WorkspaceCmd.cc
parent5f45524211c380a0e112054bd6766f2155a41d48 (diff)
downloadfluxbox-026343b6b13024c56e9273f5012076536965bd27.zip
fluxbox-026343b6b13024c56e9273f5012076536965bd27.tar.bz2
fix uninitialized variables
Diffstat (limited to 'src/WorkspaceCmd.cc')
-rw-r--r--src/WorkspaceCmd.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WorkspaceCmd.cc b/src/WorkspaceCmd.cc
index ea4d617..2af6b2f 100644
--- a/src/WorkspaceCmd.cc
+++ b/src/WorkspaceCmd.cc
@@ -55,7 +55,7 @@ FbTk::Command<void> *WindowListCmd::parse(const string &command, const string &a
55 FbTk::Command<void> *cmd = 0; 55 FbTk::Command<void> *cmd = 0;
56 FbTk::Command<bool> *filter = 0; 56 FbTk::Command<bool> *filter = 0;
57 std::vector<string> tokens; 57 std::vector<string> tokens;
58 int opts; 58 int opts = 0;
59 string pat; 59 string pat;
60 60
61 FbTk::StringUtil::stringTokensBetween(tokens, args, pat, '{', '}'); 61 FbTk::StringUtil::stringTokensBetween(tokens, args, pat, '{', '}');