diff options
Diffstat (limited to 'libc/bionic/pthread_setschedparam.cpp')
-rw-r--r-- | libc/bionic/pthread_setschedparam.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/pthread_setschedparam.cpp b/libc/bionic/pthread_setschedparam.cpp index 55ec79180..419cc6f81 100644 --- a/libc/bionic/pthread_setschedparam.cpp +++ b/libc/bionic/pthread_setschedparam.cpp @@ -31,7 +31,7 @@ #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); |