git: e90d1b574877 - main - Adjust linux_get_char_devices() definition to avoid clang 15 warning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 24 Jul 2022 22:40:41 UTC
The branch main has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=e90d1b57487759e076b16cd3903a7b69565452b9 commit e90d1b57487759e076b16cd3903a7b69565452b9 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2022-07-24 21:46:54 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2022-07-24 22:40:13 +0000 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 --- sys/compat/linux/linux_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_util.c b/sys/compat/linux/linux_util.c index 3fd88f291e11..4fa460078597 100644 --- a/sys/compat/linux/linux_util.c +++ b/sys/compat/linux/linux_util.c @@ -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;