aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2016-04-02 16:00:05 +0100
committerEric Engestrom <eric@engestrom.ch>2016-04-02 16:00:05 +0100
commit3e8081514d28871f8c780550719b2ea481b038c3 (patch)
tree89abbdf64bf6f8d9374afe9fc1f8cd4f5856d88b /common
parent0d4c31edcd49e1780da9f637474adeb09d3b11c7 (diff)
Fix spelling mistakes
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 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;