summaryrefslogtreecommitdiff
path: root/sys/compat/linux
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-16 12:25:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-16 12:25:09 +0000
commit3274122585d9f6b6c3f9ef9920141a5fe74ee713 (patch)
treef02c482646bfbe4ef8bfe53a1f7679f2e8e6073c /sys/compat/linux
parentebea7bfd3afa1f7591a977db1b64d0c4aa366df4 (diff)
use variable
Diffstat (limited to 'sys/compat/linux')
-rw-r--r--sys/compat/linux/linux_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c
index 3a940f6e702..9b1ec0e6f23 100644
--- a/sys/compat/linux/linux_file.c
+++ b/sys/compat/linux/linux_file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_file.c,v 1.3 1996/05/22 12:01:48 deraadt Exp $ */
+/* $OpenBSD: linux_file.c,v 1.4 1996/10/16 12:25:08 deraadt Exp $ */
/* $NetBSD: linux_file.c,v 1.15 1996/05/20 01:59:09 fvdl Exp $ */
/*
@@ -819,5 +819,5 @@ linux_sys_fdatasync(p, v, retval)
struct linux_sys_fdatasync_args /* {
syscallarg(int) fd;
} */ *uap = v;
- return sys_fsync(p, v, retval);
+ return sys_fsync(p, uap, retval);
}