From: Kamalesh Babulal Date: Mon, 1 Nov 2021 20:26:12 +0000 (-0600) Subject: cgclassify: fix error message X-Git-Tag: v3.0~261 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef2299a3edaadcfbb70bf741deea0ee4a3d510a4;p=thirdparty%2Flibcgroup.git cgclassify: fix error message Fix the typo in the error message, while trying to parse the cgroup to place the task. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/src/tools/cgclassify.c b/src/tools/cgclassify.c index 0a197152..ee1b60cd 100644 --- a/src/tools/cgclassify.c +++ b/src/tools/cgclassify.c @@ -146,7 +146,7 @@ int main(int argc, char *argv[]) ret = parse_cgroup_spec(cgroup_list, optarg, CG_HIER_MAX); if (ret) { - fprintf(stderr, "cgroup controller and path" + fprintf(stderr, "cgroup controller and path " "parsing failed\n"); return -1; }