Skip to content

Commit b22d81e

Browse files
committed
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>
1 parent d1ff0e2 commit b22d81e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tools/include/nolibc/sys/random.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
static __attribute__((unused))
2323
ssize_t sys_getrandom(void *buf, size_t buflen, unsigned int flags)
2424
{
25-
return my_syscall3(__NR_getrandom, buf, buflen, flags);
25+
return my_syscall3(__NR_getrandom, buf, buflen, flags);
2626
}
2727

2828
static __attribute__((unused))
2929
ssize_t getrandom(void *buf, size_t buflen, unsigned int flags)
3030
{
31-
return __sysret(sys_getrandom(buf, buflen, flags));
31+
return __sysret(sys_getrandom(buf, buflen, flags));
3232
}
3333

3434
#endif /* _NOLIBC_SYS_RANDOM_H */

tools/include/nolibc/unistd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
static __attribute__((unused))
3434
int sys_faccessat(int fd, const char *path, int amode, int flag)
3535
{
36-
return my_syscall4(__NR_faccessat, fd, path, amode, flag);
36+
return my_syscall4(__NR_faccessat, fd, path, amode, flag);
3737
}
3838

3939
static __attribute__((unused))

0 commit comments

Comments
 (0)