summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2024-02-22 18:52:39 -0500
committerPaul Moore <paul@paul-moore.com>2024-02-23 17:26:09 -0500
commita1fc79343abbdc5bebb80c2a9032063442df8b59 (patch)
tree5e8201885754d1878eb8189816d3bcd8c6d552b1 /security
parent5fca473c139693d01fcd8fbeb8c4907445934a64 (diff)
downloadlinux-a1fc79343abbdc5bebb80c2a9032063442df8b59.tar.gz
linux-a1fc79343abbdc5bebb80c2a9032063442df8b59.tar.bz2
linux-a1fc79343abbdc5bebb80c2a9032063442df8b59.zip
selinux: fix style issues in security/selinux/ss/symtab.c
As part of on ongoing effort to perform more automated testing and provide more tools for individual developers to validate their patches before submitting, we are trying to make our code "clang-format clean". My hope is that once we have fixed all of our style "quirks", developers will be able to run clang-format on their patches to help avoid silly formatting problems and ensure their changes fit in well with the rest of the SELinux kernel code. Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/symtab.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/security/selinux/ss/symtab.c b/security/selinux/ss/symtab.c
index 43d7f0319ccd..c04f8d447873 100644
--- a/security/selinux/ss/symtab.c
+++ b/security/selinux/ss/symtab.c
@@ -4,6 +4,7 @@
*
* Author : Stephen Smalley, <stephen.smalley.work@gmail.com>
*/
+
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
@@ -19,7 +20,8 @@ static unsigned int symhash(const void *key)
keyp = key;
size = strlen(keyp);
for (p = keyp; (p - keyp) < size; p++)
- val = (val << 4 | (val >> (8*sizeof(unsigned int)-4))) ^ (*p);
+ val = (val << 4 | (val >> (8 * sizeof(unsigned int) - 4))) ^
+ (*p);
return val;
}