From 4b90d3f6146154638ffbe227da48e9af0dd2a803 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 28 Mar 2018 01:19:22 +0200 Subject: Fix coding style --- sysdeps/generic/timer_routines.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/generic/timer_routines.h') diff --git a/sysdeps/generic/timer_routines.h b/sysdeps/generic/timer_routines.h index 21da7d9..c506ce9 100644 --- a/sysdeps/generic/timer_routines.h +++ b/sysdeps/generic/timer_routines.h @@ -28,13 +28,13 @@ performance reason. One could use the access functions to get the values of all the fields of the attribute structure. */ static inline int -thread_attr_compare (const pthread_attr_t *left, const pthread_attr_t *right) +thread_attr_compare (const pthread_attr_t * left, const pthread_attr_t * right) { struct __pthread_attr *ileft = (struct __pthread_attr *) left; struct __pthread_attr *iright = (struct __pthread_attr *) right; return (ileft->__schedparam.sched_priority - == iright->__schedparam.sched_priority + == iright->__schedparam.sched_priority && ileft->__stackaddr == iright->__stackaddr && ileft->__stacksize == iright->__stacksize && ileft->__guardsize == iright->__guardsize @@ -44,4 +44,4 @@ thread_attr_compare (const pthread_attr_t *left, const pthread_attr_t *right) && ileft->__schedpolicy == iright->__schedpolicy); } -#endif /* timer_routines.h */ +#endif /* timer_routines.h */ -- cgit v1.2.3