diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-03-16 14:34:00 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-03-16 14:34:00 +0100 |
commit | 998fdc16aa3fd461ed932214e2e50c74d2f81040 (patch) | |
tree | 10a787fad0174417f65e0703062585f017d04c10 /src/nspawn/nspawn-cgroup.c | |
parent | db6b984ba8d1a64ab1cfba6fb714cd1e70970d58 (diff) |
nspawn: Fix two misspellings of "hierarchy" in error messages
Diffstat (limited to 'src/nspawn/nspawn-cgroup.c')
-rw-r--r-- | src/nspawn/nspawn-cgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nspawn/nspawn-cgroup.c b/src/nspawn/nspawn-cgroup.c index 1db5ba7116..9f9a4759d1 100644 --- a/src/nspawn/nspawn-cgroup.c +++ b/src/nspawn/nspawn-cgroup.c @@ -73,7 +73,7 @@ int sync_cgroup(pid_t pid, bool unified_requested) { unified = cg_unified(); if (unified < 0) - return log_error_errno(unified, "Failed to determine whether the unified hierachy is used: %m"); + return log_error_errno(unified, "Failed to determine whether the unified hierarchy is used: %m"); if ((unified > 0) == unified_requested) return 0; @@ -135,7 +135,7 @@ int create_subcgroup(pid_t pid, bool unified_requested) { unified = cg_unified(); if (unified < 0) - return log_error_errno(unified, "Failed to determine whether the unified hierachy is used: %m"); + return log_error_errno(unified, "Failed to determine whether the unified hierarchy is used: %m"); if (unified == 0) return 0; |