about summary refs log tree commit diff
path: root/src/unistd/fsync.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/fsync.c')
-rw-r--r--src/unistd/fsync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/fsync.c b/src/unistd/fsync.c
index 7cfedc98..5991c66b 100644
--- a/src/unistd/fsync.c
+++ b/src/unistd/fsync.c
@@ -3,6 +3,6 @@
 
 int fsync(int fd)
 {
-	//return syscall1(__NR_fsync, fd);
+	//return syscall(SYS_fsync, fd);
 	return 0;
 }