diff options
Diffstat (limited to 'libc/bionic/pthread_setschedparam.cpp')
-rw-r--r-- | libc/bionic/pthread_setschedparam.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/bionic/pthread_setschedparam.cpp b/libc/bionic/pthread_setschedparam.cpp index c383cca..419cc6f 100644 --- a/libc/bionic/pthread_setschedparam.cpp +++ b/libc/bionic/pthread_setschedparam.cpp @@ -28,10 +28,10 @@ #include <errno.h> -#include "ErrnoRestorer.h" +#include "private/ErrnoRestorer.h" #include "pthread_accessor.h" -int pthread_setschedparam(pthread_t t, int policy, struct sched_param const* param) { +int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { ErrnoRestorer errno_restorer; pthread_accessor thread(t); |