From: Kamalesh Babulal Date: Mon, 14 Aug 2023 07:55:35 +0000 (+0530) Subject: tools/cgcreate: fix spellings across the file X-Git-Tag: v3.2.0~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ca467028861fb55aef88624b482558adfb3f4f1;p=thirdparty%2Flibcgroup.git tools/cgcreate: fix spellings across the file Fix the spelling mistakes across the file and also fix word case. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/src/tools/cgcreate.c b/src/tools/cgcreate.c index a873bb4c..f5aa7480 100644 --- a/src/tools/cgcreate.c +++ b/src/tools/cgcreate.c @@ -95,7 +95,7 @@ static int create_systemd_scope(struct cgroup * const cg, const char * const pro } /* - * the default was successfully set. override the return of "1" back to + * the default was successfully set. Override the return of "1" back to * the usual "0" on success. */ ret = 0; @@ -156,7 +156,7 @@ int main(int argc, char *argv[]) int i, j; int c; - /* no parametr on input */ + /* no parameter on input */ if (argc < 2) { usage(1, argv[0]); exit(EXIT_BADARGS); @@ -269,7 +269,7 @@ int main(int argc, char *argv[]) goto err; } - /* initialize libcg */ + /* initialize libcgroup */ ret = cgroup_init(); if (ret) { err("%s: libcgroup initialization failed: %s\n", argv[0], cgroup_strerror(ret));