]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
enosys: syscall numbers are "long"
authorThomas Weißschuh <thomas@t-8ch.de>
Fri, 28 Apr 2023 14:45:58 +0000 (16:45 +0200)
committerThomas Weißschuh <thomas@t-8ch.de>
Tue, 16 May 2023 20:32:29 +0000 (22:32 +0200)
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
misc-utils/enosys.c

index 3a95ecbab410f33660ad0686999636db0a8ff71d..857b230520bf16525deef188c421a5d39801f52f 100644 (file)
@@ -63,7 +63,7 @@
 
 struct syscall {
        const char *const name;
-       int number;
+       long number;
 };
 
 static const struct syscall syscalls[] = {