diff mbox

[1/6] syscalls-common.h: Rename some macro args for correct documentation

Message ID 1403762615-25145-2-git-send-email-vgupta@synopsys.com
State Accepted
Headers show

Commit Message

Vineet Gupta June 26, 2014, 6:03 a.m. UTC
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Denys Vlasenko <vda.linux@googlemail.com>
---
 libc/sysdeps/linux/common/bits/syscalls-common.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/libc/sysdeps/linux/common/bits/syscalls-common.h b/libc/sysdeps/linux/common/bits/syscalls-common.h
index 0f5a92990f05..86fe26c508c5 100644
--- a/libc/sysdeps/linux/common/bits/syscalls-common.h
+++ b/libc/sysdeps/linux/common/bits/syscalls-common.h
@@ -39,13 +39,13 @@ 
 
 /* Just like INLINE_SYSCALL(), but take a non-constant syscall (NCS) argument */
 #ifndef INLINE_SYSCALL_NCS
-# define INLINE_SYSCALL_NCS(name, nr, args...)				\
+# define INLINE_SYSCALL_NCS(num, nr, args...)				\
 (__extension__								\
  ({									\
 	INTERNAL_SYSCALL_DECL(__err);					\
 	(__extension__							\
 	 ({								\
-	   long __res = INTERNAL_SYSCALL_NCS(name, __err, nr, args);	\
+	   long __res = INTERNAL_SYSCALL_NCS(num, __err, nr, args);	\
 	   if (unlikely(INTERNAL_SYSCALL_ERROR_P(__res, __err))) {	\
 		__set_errno(INTERNAL_SYSCALL_ERRNO(__res, __err));	\
 		__res = -1L;						\
@@ -57,10 +57,10 @@ 
 )
 #endif
 #ifndef INLINE_SYSCALL_NOERR_NCS
-# define INLINE_SYSCALL_NOERR_NCS(name, nr, args...)			\
+# define INLINE_SYSCALL_NOERR_NCS(num, nr, args...)			\
 ({									\
 	INTERNAL_SYSCALL_DECL(__err);					\
-	long __res = INTERNAL_SYSCALL_NCS(name, __err, nr, args);	\
+	long __res = INTERNAL_SYSCALL_NCS(num, __err, nr, args);	\
 	__res;								\
 })
 #endif