aboutsummaryrefslogtreecommitdiff
path: root/common/stringop.c
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2016-04-02 16:00:05 +0100
committerFurkan Sahin <furkan-dev@proton.me>2016-04-02 16:00:05 +0100
commitea8aaf521eff8c70566b7a613e0a93e243faf7bb (patch)
tree89abbdf64bf6f8d9374afe9fc1f8cd4f5856d88b /common/stringop.c
parent9210d1edf57bfa930f400fe78c48cfbd0cefcd77 (diff)
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) {
char *head = *stringp + strspn(*stringp, delim);
// Find end token
char *tail = *stringp += strcspn(*stringp, delim);
- // Set stringp to begining of next token
+ // Set stringp to beginning of next token
*stringp += strspn(*stringp, delim);
// Set stringp to null if last token
if (!**stringp) *stringp = NULL;