[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170823134406.1023727-1-arnd@arndb.de>
Date: Wed, 23 Aug 2017 15:43:33 +0200
From: Arnd Bergmann <arnd@...db.de>
To: Kees Cook <keescook@...omium.org>
Cc: Arnd Bergmann <arnd@...db.de>,
Andy Lutomirski <luto@...capital.net>,
Will Drewry <wad@...omium.org>,
Tyler Hicks <tyhicks@...onical.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] seccomp: add missing semicolon
We get a compile error without it, at least in some configurations:
kernel/seccomp.c:1221:1: error: expected ',' or ';' at end of input
Fixes: 8e5f1ad116df ("seccomp: Sysctl to display available actions")
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
kernel/seccomp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/seccomp.c b/kernel/seccomp.c
index c24579dfa7a1..3eeb2257bd62 100644
--- a/kernel/seccomp.c
+++ b/kernel/seccomp.c
@@ -1218,6 +1218,6 @@ static int __init seccomp_sysctl_init(void)
return 0;
}
-device_initcall(seccomp_sysctl_init)
+device_initcall(seccomp_sysctl_init);
#endif /* CONFIG_SYSCTL */
--
2.9.0
Powered by blists - more mailing lists