diff options
author | Mickaël Salaün <mic@digikod.net> | 2022-05-06 19:05:08 +0300 |
---|---|---|
committer | Mickaël Salaün <mic@digikod.net> | 2022-05-09 13:31:10 +0300 |
commit | 06a1c40a09a8dded4bf0e7e3ccbda6bddcccd7c8 (patch) | |
tree | c56afc5d9b856a1b38cf8496515eee4b7d4e23c9 /security/landlock/object.h | |
parent | 6cc2df8e3a3967e7c13a424f87f6efb1d4a62d80 (diff) | |
download | linux-06a1c40a09a8dded4bf0e7e3ccbda6bddcccd7c8.tar.xz |
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.h')
-rw-r--r-- | security/landlock/object.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/landlock/object.h b/security/landlock/object.h index 3f80674c6c8d..5f28c35e8aa8 100644 --- a/security/landlock/object.h +++ b/security/landlock/object.h @@ -76,9 +76,9 @@ struct landlock_object { }; }; -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); void landlock_put_object(struct landlock_object *const object); |