thr_mutex.c: style

Reindend and re-fill the statement.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D41150
This commit is contained in:
Konstantin Belousov 2023-07-22 20:59:26 +03:00
parent 86c7368f2b
commit 0a5c29a6ee

View File

@ -291,8 +291,8 @@ mutex_init(pthread_mutex_t *mutex,
if (error != 0)
return (error);
}
if ((pmutex = (pthread_mutex_t)
calloc_cb(1, sizeof(struct pthread_mutex))) == NULL)
if ((pmutex = (pthread_mutex_t)calloc_cb(1,
sizeof(struct pthread_mutex))) == NULL)
return (ENOMEM);
mutex_init_body(pmutex, attr);
*mutex = pmutex;