tools/nolibc: use tabs instead of spaces for indentation
Some lines are using spaces for indentation instead of the standard tabs. Fix them. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
This commit is contained in:
@@ -22,13 +22,13 @@
|
||||
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 */
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user