aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLibravatar Jason <jason@kayoway.com>2019-11-23 19:38:15 +0900
committerLibravatar Simon Ser <contact@emersion.fr>2019-11-23 11:48:31 +0100
commit939c7b2d529b8c982672a6e141a8bef2348d358a (patch)
tree974fe362f3fa08d41376e82ef4c7b9410094e766 /common
parentUse new presentation-time helper (diff)
downloadsway-939c7b2d529b8c982672a6e141a8bef2348d358a.tar.gz
sway-939c7b2d529b8c982672a6e141a8bef2348d358a.tar.zst
sway-939c7b2d529b8c982672a6e141a8bef2348d358a.zip
Amend typos
Diffstat (limited to 'common')
-rw-r--r--common/stringop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/stringop.c b/common/stringop.c
index 0df2b33d..8c8e9aa2 100644
--- a/common/stringop.c
+++ b/common/stringop.c
@@ -96,7 +96,7 @@ char **split_args(const char *start, int *argc) {
96 bool in_token = false; 96 bool in_token = false;
97 bool in_string = false; 97 bool in_string = false;
98 bool in_char = false; 98 bool in_char = false;
99 bool in_brackets = false; // brackets are used for critera 99 bool in_brackets = false; // brackets are used for criteria
100 bool escaped = false; 100 bool escaped = false;
101 const char *end = start; 101 const char *end = start;
102 if (start) { 102 if (start) {