From c2cd25bff89c3581780e7eb267262cb8c4da0d38 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 6 Apr 2011 20:32:53 -0400 Subject: consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix --- src/unistd/setresgid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/setresgid.c') diff --git a/src/unistd/setresgid.c b/src/unistd/setresgid.c index 2b0c96d8..9b9fe50b 100644 --- a/src/unistd/setresgid.c +++ b/src/unistd/setresgid.c @@ -5,5 +5,5 @@ int setresgid(gid_t rgid, gid_t egid, gid_t sgid) { - return __rsyscall(__NR_setresgid, rgid, egid, sgid, 0, 0, 0); + return __rsyscall(SYS_setresgid, rgid, egid, sgid, 0, 0, 0); } -- cgit v1.2.1