From 3e8081514d28871f8c780550719b2ea481b038c3 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 2 Apr 2016 16:00:05 +0100 Subject: Fix spelling mistakes --- common/stringop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/stringop.c') 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; -- cgit v1.2.3-54-g00ecf