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/setregid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/setregid.c') diff --git a/src/unistd/setregid.c b/src/unistd/setregid.c index 49c59858..665b5556 100644 --- a/src/unistd/setregid.c +++ b/src/unistd/setregid.c @@ -4,5 +4,5 @@ int setregid(gid_t rgid, gid_t egid) { - return __rsyscall(__NR_setregid, rgid, egid, 0, 0, 0, 0); + return __rsyscall(SYS_setregid, rgid, egid, 0, 0, 0, 0); } -- cgit v1.2.1