]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
tools/nolibc: use tabs instead of spaces for indentation
authorThomas Weißschuh <linux@weissschuh.net>
Sun, 24 Aug 2025 06:58:46 +0000 (08:58 +0200)
committerThomas Weißschuh <linux@weissschuh.net>
Mon, 1 Sep 2025 18:47:50 +0000 (20:47 +0200)
Some lines are using spaces for indentation instead of the standard tabs.

Fix them.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
tools/include/nolibc/sys/random.h
tools/include/nolibc/unistd.h

index 8d9749f1c84572ab07c6dc70f331583063266eaf..cd5d25c571a8b7bb443fdb42c675f8a31cf2fee5 100644 (file)
 static __attribute__((unused))
 ssize_t sys_getrandom(void *buf, size_t buflen, unsigned int flags)
 {
-       return my_syscall3(__NR_getrandom, buf, buflen, flags);
+       return my_syscall3(__NR_getrandom, buf, buflen, flags);
 }
 
 static __attribute__((unused))
 ssize_t getrandom(void *buf, size_t buflen, unsigned int flags)
 {
-       return __sysret(sys_getrandom(buf, buflen, flags));
+       return __sysret(sys_getrandom(buf, buflen, flags));
 }
 
 #endif /* _NOLIBC_SYS_RANDOM_H */
index 25bfc7732ec7e72a60f445588a233f72c008f7ef..7405fa2b89baa805d0ab1d28ae70c9d8c1ef67a7 100644 (file)
@@ -33,7 +33,7 @@
 static __attribute__((unused))
 int sys_faccessat(int fd, const char *path, int amode, int flag)
 {
-       return my_syscall4(__NR_faccessat, fd, path, amode, flag);
+       return my_syscall4(__NR_faccessat, fd, path, amode, flag);
 }
 
 static __attribute__((unused))