this repo has no description
1
fork

Configure Feed

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

Fix missing arg when calling fstatfs64

+1 -1
+1 -1
src/kernel/emulation/linux/stat/fstatfs.c
··· 36 36 int max_len = 0; 37 37 38 38 #ifdef __NR_fstatfs64 39 - ret = LINUX_SYSCALL2(__NR_fstatfs64, fd, &lbuf); 39 + ret = LINUX_SYSCALL3(__NR_fstatfs64, fd, sizeof(lbuf), &lbuf); 40 40 #else 41 41 ret = LINUX_SYSCALL2(__NR_fstatfs, fd, &lbuf); 42 42 #endif