From: Thomas Weißschuh Date: Fri, 28 Apr 2023 14:45:58 +0000 (+0200) Subject: enosys: syscall numbers are "long" X-Git-Tag: v2.40-rc1~466^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58fe26362c4e88395e857b741cd7a56135503e6b;p=thirdparty%2Futil-linux.git enosys: syscall numbers are "long" Signed-off-by: Thomas Weißschuh --- diff --git a/misc-utils/enosys.c b/misc-utils/enosys.c index 3a95ecbab4..857b230520 100644 --- a/misc-utils/enosys.c +++ b/misc-utils/enosys.c @@ -63,7 +63,7 @@ struct syscall { const char *const name; - int number; + long number; }; static const struct syscall syscalls[] = {