summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/proc/proc-self-syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/proc/proc-self-syscall.c')
-rw-r--r--tools/testing/selftests/proc/proc-self-syscall.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/selftests/proc/proc-self-syscall.c b/tools/testing/selftests/proc/proc-self-syscall.c
index 5ab5f4810e43a..9f6d000c02455 100644
--- a/tools/testing/selftests/proc/proc-self-syscall.c
+++ b/tools/testing/selftests/proc/proc-self-syscall.c
@@ -20,7 +20,6 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
-#include <unistd.h>
#include <string.h>
#include <stdio.h>
@@ -39,7 +38,7 @@ int main(void)
fd = open("/proc/self/syscall", O_RDONLY);
if (fd == -1) {
if (errno == ENOENT)
- return 2;
+ return 4;
return 1;
}