Disable error message in thneed ioctl interceptor to fix pyenv issues

This commit is contained in:
mitchellgoffpc
2023-08-24 14:33:48 -07:00
parent 54e98fa888
commit a184d40b7a
+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;
}