fix typo in setpriority syscall wrapper

This commit is contained in:
Rich Felker 2013-04-01 11:20:12 -04:00
parent 0b2764d054
commit 201e6603c3

View File

@ -3,5 +3,5 @@
int setpriority(int which, id_t who, int prio)
{
return syscall(SYS_getpriority, which, who, prio);
return syscall(SYS_setpriority, which, who, prio);
}