Disable error message in thneed ioctl interceptor to fix pyenv issues

old-commit-hash: a184d40b7aebbebd91000a199d90299457378381
This commit is contained in:
mitchellgoffpc
2023-08-24 14:33:48 -07:00
parent 8cbc68a3be
commit 0126d840f3
+2 -1
View File
@@ -107,7 +107,8 @@ int ioctl(int filedes, unsigned long request, void *argp) {
}
int ret = my_ioctl(filedes, request, argp);
if (ret != 0) printf("ioctl returned %d with errno %d\n", ret, errno);
// NOTE: This error message goes into stdout and messes up pyenv
// if (ret != 0) printf("ioctl returned %d with errno %d\n", ret, errno);
return ret;
}