aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2022-07-24 21:46:54 +0000
committerDimitry Andric <dim@FreeBSD.org>2022-07-24 22:40:13 +0000
commite90d1b57487759e076b16cd3903a7b69565452b9 (patch)
treea602995c494094bf8df43305e10782fae6c24d01
parent90529847cf079d3b7250ae3d3ecd79e843df7973 (diff)
downloadsrc-e90d1b57487759e076b16cd3903a7b69565452b9.tar.gz
src-e90d1b57487759e076b16cd3903a7b69565452b9.zip
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
-rw-r--r--sys/compat/linux/linux_util.c2
1 files changed, 1 insertions, 1 deletions
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;