K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:50:19.678351Z K 7 svn:log V 652 Adjust function definition in vfs_bio.c to avoid clang 15 warnings With clang 15, the following -Werror warning is produced: sys/kern/vfs_bio.c:3430:11: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] buf_daemon() ^ void This is because buf_daemon() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 days (cherry picked from commit a387bd1b6a0e18d7abafcbb5ae1870be0604ff15) Git Hash: a250df8f4a2cfa500b0ddd503e11d46efc5097f8 Git Author: dim@FreeBSD.org END