From 6a6078a585f398f70d00598290c5109fb4b0837a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 8 Jan 2020 12:12:16 +0100 Subject: [PATCH] test: minor typo fix As pointed out on: https://github.com/systemd/systemd/pull/14465#discussion_r364152064 --- src/test/test-process-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test-process-util.c b/src/test/test-process-util.c index 7b6a38b8243..4a3f2116588 100644 --- a/src/test/test-process-util.c +++ b/src/test/test-process-util.c @@ -617,7 +617,7 @@ static void test_setpriority_closest(void) { /* rlimit of 30 equals nice level of -10 */ if (setrlimit(RLIMIT_NICE, &RLIMIT_MAKE_CONST(30)) < 0) { - /* If this fails we are probably unprivielged or in a userns of some kind, let's skip + /* If this fails we are probably unprivileged or in a userns of some kind, let's skip * the full test */ assert_se(ERRNO_IS_PRIVILEGE(errno)); full_test = false;