diff options
author | taiyu <[email protected]> | 2015-09-10 11:07:40 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-09-10 11:07:40 -0700 |
commit | aaa0923bc4fe4ffda114482a9b8023c90c26c8dc (patch) | |
tree | 7c12a435bf56e4ebfcae689ce46280eeeb330346 /sway/stringop.c | |
parent | 6388241abb7e2e66e716fc128e658d3d3419442a (diff) |
cmd status + workspace ws output op
Diffstat (limited to 'sway/stringop.c')
-rw-r--r-- | sway/stringop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/stringop.c b/sway/stringop.c index 270e673a..191e40c8 100644 --- a/sway/stringop.c +++ b/sway/stringop.c @@ -145,7 +145,7 @@ char **split_args(const char *start, int *argc) { } void free_argv(int argc, char **argv) { - while (--argc) { + while (--argc > 0) { free(argv[argc]); } free(argv); |