Skip to content

Commit 2399b93

Browse files
committed
fix missing argument for the wrapper
1 parent 24084a9 commit 2399b93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/test/sanitizer_common/TestCases/Linux/copy_file_range.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#endif
1717

1818
#if !__GLIBC_PREREQ(2, 27)
19-
# define copy_file_range(a, b, c, d, e) \
20-
(ssize_t) syscall(__NR_copy_file_range, a, b, c, d, e)
19+
# define copy_file_range(a, b, c, d, e, f) \
20+
(ssize_t) syscall(__NR_copy_file_range, a, b, c, d, e, f)
2121
#endif
2222

2323
int main(void) {

0 commit comments

Comments
 (0)