aboutsummaryrefslogtreecommitdiffstats
path: root/common/stringop.c
diff options
context:
space:
mode:
authorLibravatar Eric Engestrom <eric@engestrom.ch>2016-04-02 16:00:05 +0100
committerLibravatar Eric Engestrom <eric@engestrom.ch>2016-04-02 16:00:05 +0100
commit3e8081514d28871f8c780550719b2ea481b038c3 (patch)
tree89abbdf64bf6f8d9374afe9fc1f8cd4f5856d88b /common/stringop.c
parentMerge pull request #565 from mikkeloscar/fix-pointer-crash (diff)
downloadsway-3e8081514d28871f8c780550719b2ea481b038c3.tar.gz
sway-3e8081514d28871f8c780550719b2ea481b038c3.tar.zst
sway-3e8081514d28871f8c780550719b2ea481b038c3.zip
Fix spelling mistakes
Diffstat (limited to 'common/stringop.c')
-rw-r--r--common/stringop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/stringop.c b/common/stringop.c
index 186fe121..61324458 100644
--- a/common/stringop.c
+++ b/common/stringop.c
@@ -342,7 +342,7 @@ char *cmdsep(char **stringp, const char *delim) {
342 char *head = *stringp + strspn(*stringp, delim); 342 char *head = *stringp + strspn(*stringp, delim);
343 // Find end token 343 // Find end token
344 char *tail = *stringp += strcspn(*stringp, delim); 344 char *tail = *stringp += strcspn(*stringp, delim);
345 // Set stringp to begining of next token 345 // Set stringp to beginning of next token
346 *stringp += strspn(*stringp, delim); 346 *stringp += strspn(*stringp, delim);
347 // Set stringp to null if last token 347 // Set stringp to null if last token
348 if (!**stringp) *stringp = NULL; 348 if (!**stringp) *stringp = NULL;