diff options
author | Mickaël Salaün <mic@digikod.net> | 2022-05-06 18:05:08 +0200 |
---|---|---|
committer | Mickaël Salaün <mic@digikod.net> | 2022-05-09 12:31:10 +0200 |
commit | 06a1c40a09a8dded4bf0e7e3ccbda6bddcccd7c8 (patch) | |
tree | c56afc5d9b856a1b38cf8496515eee4b7d4e23c9 /security/landlock/object.c | |
parent | 6cc2df8e3a3967e7c13a424f87f6efb1d4a62d80 (diff) |
landlock: Format with clang-format
Let's follow a consistent and documented coding style. Everything may
not be to our liking but it is better than tacit knowledge. Moreover,
this will help maintain style consistency between different developers.
This contains only whitespace changes.
Automatically formatted with:
clang-format-14 -i security/landlock/*.[ch] include/uapi/linux/landlock.h
Link: https://lore.kernel.org/r/20220506160513.523257-3-mic@digikod.net
Cc: stable@vger.kernel.org
Signed-off-by: Mickaël Salaün <mic@digikod.net>
Diffstat (limited to 'security/landlock/object.c')
-rw-r--r-- | security/landlock/object.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/landlock/object.c b/security/landlock/object.c index d674fdf9ff04..1f50612f0185 100644 --- a/security/landlock/object.c +++ b/security/landlock/object.c @@ -17,9 +17,9 @@ #include "object.h" -struct landlock_object *landlock_create_object( - const struct landlock_object_underops *const underops, - void *const underobj) +struct landlock_object * +landlock_create_object(const struct landlock_object_underops *const underops, + void *const underobj) { struct landlock_object *new_object; |