spsysinit01: Fix sem_open() call

The O_CREAT flag requires a mode and initial value as third and fourth
argument.

Close #4878.
This commit is contained in:
Sebastian Huber
2023-03-13 15:47:32 +01:00
parent 2859e422b3
commit 377eae4165

View File

@@ -908,7 +908,7 @@ static void do_posix_sem_open(void)
sem_t *sem;
int rv;
sem = sem_open("sem", O_CREAT | O_RDWR, S_IRWXU | S_IRWXG | S_IRWXO);
sem = sem_open("sem", O_CREAT | O_RDWR, S_IRWXU | S_IRWXG | S_IRWXO, 0);
rtems_test_assert(sem != SEM_FAILED);
rv = sem_close(sem);