cifsd-team / ksmbd-tools

ksmbd kernel server userspace utilities
GNU General Public License v2.0
94 stars 27 forks source link

ksmbd-tools: fix worker_init_sa_handler return type #309

Closed ddiss closed 1 year ago

ddiss commented 1 year ago

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 | } | ^

namjaejeon commented 1 year ago

Applied, Thanks!