fix some indention-with-spaces that crept in
This commit is contained in:
+3
-3
@@ -4,7 +4,7 @@
|
||||
#include "syscall.h"
|
||||
|
||||
int dup3(int old, int new, int flags) {
|
||||
int r;
|
||||
while ((r=__syscall(SYS_dup3, old, new, flags))==-EBUSY);
|
||||
return __syscall_ret(r);
|
||||
int r;
|
||||
while ((r=__syscall(SYS_dup3, old, new, flags))==-EBUSY);
|
||||
return __syscall_ret(r);
|
||||
}
|
||||
|
||||
+1
-1
@@ -5,5 +5,5 @@
|
||||
|
||||
int setns(int fd, int nstype)
|
||||
{
|
||||
return syscall(SYS_setns, fd, nstype);
|
||||
return syscall(SYS_setns, fd, nstype);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user