From d07fa25e04a19ccb9aa25bb6e2156d23d213db77 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 28 Nov 2023 20:11:05 +0100 Subject: Meta: Apply new clang-format rules to kernel --- kernel/syscalls/randomfill.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'kernel/syscalls/randomfill.c') diff --git a/kernel/syscalls/randomfill.c b/kernel/syscalls/randomfill.c index 41f3ef0..3808009 100644 --- a/kernel/syscalls/randomfill.c +++ b/kernel/syscalls/randomfill.c @@ -4,4 +4,6 @@ // This syscall will never fail. At worst a page fault will occur but if // the syscall returns the buffer will have been filled with random // data. -void syscall_randomfill(void *buffer, u32 size) { get_random(buffer, size); } +void syscall_randomfill(void *buffer, u32 size) { + get_random(buffer, size); +} -- cgit v1.2.3