Phoenix-RTOS: Fix warning with pointer treated as integer.

This commit is contained in:
Kuba Sejdak 2016-06-24 14:14:49 +02:00 committed by Corinna Vinschen
parent ab92a06cd4
commit e5e0bd38d2
1 changed files with 1 additions and 1 deletions

View File

@ -96,5 +96,5 @@ int setpgrp(pid_t pid, pid_t pgid)
{
/* TODO: implement. */
errno = ENOSYS;
return NULL;
return -1;
}