From a984eb367c032dbe2577f01238c3d1268526be70 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 19:24:38 +0100 Subject: Clang-tidy fixes --- lib/libc/sys/mount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/sys/mount.c') diff --git a/lib/libc/sys/mount.c b/lib/libc/sys/mount.c index 75532cdf..6cd77f1b 100644 --- a/lib/libc/sys/mount.c +++ b/lib/libc/sys/mount.c @@ -2,8 +2,8 @@ #include // for mount #include // for __syscall_5, syscall -int mount(const char *source, const char *target, const char *filesystemtype, - unsigned long mountflags, const void *_Nullable data) +int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, + const void *_Nullable data) { return syscall(mount, source, target, filesystemtype, mountflags, data); } -- cgit v1.2.3