Adjust linux_get_char_devices() definition to avoid clang 15 warning

With clang 15, the following -Werror warning is produced:

    sys/compat/linux/linux_util.c:243:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
    linux_get_char_devices()
                          ^
                           void

This is because linux_get_char_devices() is declared with a (void)
argument list, but defined with an empty argument list. Make the
definition match the declaration.

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2022-07-24 23:46:54 +02:00
parent 90529847cf
commit e90d1b5748

View File

@ -240,7 +240,7 @@ linux_vn_get_major_minor(const struct vnode *vp, int *major, int *minor)
}
char *
linux_get_char_devices()
linux_get_char_devices(void)
{
struct device_element *de;
char *temp, *string, *last;