diff options
| -rw-r--r-- | libc/sysdeps/linux/common/bits/syscalls-common.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/libc/sysdeps/linux/common/bits/syscalls-common.h b/libc/sysdeps/linux/common/bits/syscalls-common.h index faebd1b71..0f5a92990 100644 --- a/libc/sysdeps/linux/common/bits/syscalls-common.h +++ b/libc/sysdeps/linux/common/bits/syscalls-common.h @@ -59,8 +59,8 @@  #ifndef INLINE_SYSCALL_NOERR_NCS  # define INLINE_SYSCALL_NOERR_NCS(name, nr, args...)			\  ({									\ -	/*INTERNAL_SYSCALL_DECL(__err);*/					\ -	long __res = INTERNAL_SYSCALL_NCS(name, /*__err*/, nr, args);	\ +	INTERNAL_SYSCALL_DECL(__err);					\ +	long __res = INTERNAL_SYSCALL_NCS(name, __err, nr, args);	\  	__res;								\  })  #endif | 
