this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Error return fixes in (f)statfs

+3 -3
+2 -2
src/kernel/emulation/linux/stat/fstatfs.c
··· 50 50 ret = sys_readlink(line, path, sizeof(path)); 51 51 52 52 if (ret < 0) 53 - return errno_linux_to_bsd(ret); 53 + return ret; 54 54 55 55 fd_m = sys_open("/proc/self/mounts", O_RDONLY, 0); 56 56 if (fd_m < 0) 57 - return errno_linux_to_bsd(fd_m); 57 + return fd_m; 58 58 59 59 __simple_readline_init(&rbuf); 60 60
+1 -1
src/kernel/emulation/linux/stat/statfs.c
··· 45 45 46 46 fd = sys_open("/proc/self/mounts", O_RDONLY, 0); 47 47 if (fd < 0) 48 - return errno_linux_to_bsd(fd); 48 + return fd; 49 49 50 50 __simple_readline_init(&rbuf); 51 51