The function doesn't return any errors, so switch it to void to silence compiler warnings such as:
mountd.c: In function 'worker_init_sa_handler':
mountd.c:114:1: error: no return statement in function returning
non-void [-Werror=return-type]
114 | }
| ^
The function doesn't return any errors, so switch it to void to silence compiler warnings such as: mountd.c: In function 'worker_init_sa_handler': mountd.c:114:1: error: no return statement in function returning non-void [-Werror=return-type] 114 | } | ^