From: Thomas Weißschuh Date: Thu, 27 Apr 2023 22:04:35 +0000 (+0200) Subject: enosys: mark variable static X-Git-Tag: v2.40-rc1~466^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=165fbfd46eeac9437d73b926504de61f6b10d191;p=thirdparty%2Futil-linux.git enosys: mark variable static Signed-off-by: Thomas Weißschuh --- diff --git a/misc-utils/enosys.c b/misc-utils/enosys.c index 6497bb8362..3a95ecbab4 100644 --- a/misc-utils/enosys.c +++ b/misc-utils/enosys.c @@ -66,7 +66,7 @@ struct syscall { int number; }; -const struct syscall syscalls[] = { +static const struct syscall syscalls[] = { { "move_mount", __NR_move_mount }, { "open_tree", __NR_open_tree }, { "fsopen", __NR_fsopen },