summaryrefslogtreecommitdiff
path: root/pthread_getschedparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthread_getschedparam.c')
-rw-r--r--pthread_getschedparam.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pthread_getschedparam.c b/pthread_getschedparam.c
index ac02775..d968aa5 100644
--- a/pthread_getschedparam.c
+++ b/pthread_getschedparam.c
@@ -39,13 +39,13 @@
#include "sched.h"
int
-pthread_getschedparam(pthread_t thread, int *policy,
- struct sched_param *param)
+pthread_getschedparam (pthread_t thread, int *policy,
+ struct sched_param *param)
{
int result;
/* Validate the thread id. */
- result = pthread_kill(thread, 0);
+ result = pthread_kill (thread, 0);
if (0 != result)
{
return result;