From d09a25855f9dba60d555b9044e8e91783ab966c5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 21 Mar 2019 12:29:18 +0100 Subject: [PATCH] capability: add missing ')' As pointed out by @polarina https://github.com/systemd/systemd/commit/d0b6a10c005ab1fff44d032be995e3f2bcfba225#commitcomment-32857641 --- src/basic/capability-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/capability-util.c b/src/basic/capability-util.c index 45fadb9faa9..aca861e5eee 100644 --- a/src/basic/capability-util.c +++ b/src/basic/capability-util.c @@ -50,7 +50,7 @@ unsigned long cap_last_cap(void) { if (p > 63) /* Safety for the future: if one day the kernel learns more than 64 caps, * then we are in trouble (since we, as much userspace and kernel space - * store capability masks in uint64_t types. Let's hence protect + * store capability masks in uint64_t types). Let's hence protect * ourselves against that and always cap at 63 for now. */ p = 63; -- 2.47.3