From 5417a83ef82f07489c3f54d0c5fbc2989aa94b0c Mon Sep 17 00:00:00 2001 From: Felix Wong Date: Fri, 11 Mar 2016 02:19:09 -0800 Subject: [PATCH] fix typo in error message --- platform/linux/linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/linux/linux.c b/platform/linux/linux.c index 45a6ff1..8845eb8 100644 --- a/platform/linux/linux.c +++ b/platform/linux/linux.c @@ -148,7 +148,7 @@ int check_pgroup(pid_t target) { memcpy(pid_stat.comm, "???", 4); } error("Process %d (%.*s) shares %d's process group. Unable to attach.\n" - "(This most commonly means that %d has suprocesses).", + "(This most commonly means that %d has sub-processes).", (int)pid, TASK_COMM_LENGTH, pid_stat.comm, (int)target, (int)target); err = EINVAL; goto out;