git: b81f4ea07deb - stable/13 - libthr: some style in thr_rwlock.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 18 Jul 2023 05:47:10 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=b81f4ea07deb6fd1411635d66d1a501a2b257d86
commit b81f4ea07deb6fd1411635d66d1a501a2b257d86
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-07-13 15:55:50 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-07-18 05:46:45 +0000
libthr: some style in thr_rwlock.c
(cherry picked from commit 80c5588495674fc6501700fccb0ed4a37183c89c)
---
lib/libthr/thread/thr_rwlock.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/libthr/thread/thr_rwlock.c b/lib/libthr/thread/thr_rwlock.c
index 8457250e60f7..ab10431b9d41 100644
--- a/lib/libthr/thread/thr_rwlock.c
+++ b/lib/libthr/thread/thr_rwlock.c
@@ -343,14 +343,14 @@ rwlock_wrlock_common(pthread_rwlock_t *rwlock, const struct timespec *abstime)
int
_Tthr_rwlock_wrlock(pthread_rwlock_t *rwlock)
{
- return (rwlock_wrlock_common (rwlock, NULL));
+ return (rwlock_wrlock_common(rwlock, NULL));
}
int
_pthread_rwlock_timedwrlock(pthread_rwlock_t * __restrict rwlock,
const struct timespec * __restrict abstime)
{
- return (rwlock_wrlock_common (rwlock, abstime));
+ return (rwlock_wrlock_common(rwlock, abstime));
}
int