diff --git a/sys/compat/osf1/osf1_descrip.c b/sys/compat/osf1/osf1_descrip.c index 4a3f145133d2..6184c327f53a 100644 --- a/sys/compat/osf1/osf1_descrip.c +++ b/sys/compat/osf1/osf1_descrip.c @@ -1,4 +1,4 @@ -/* $NetBSD: osf1_descrip.c,v 1.27 2009/01/26 13:00:05 njoly Exp $ */ +/* $NetBSD: osf1_descrip.c,v 1.28 2009/05/18 12:39:02 njoly Exp $ */ /* * Copyright (c) 1999 Christopher G. Demetriou. All rights reserved. @@ -58,7 +58,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: osf1_descrip.c,v 1.27 2009/01/26 13:00:05 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: osf1_descrip.c,v 1.28 2009/05/18 12:39:02 njoly Exp $"); #include #include @@ -252,7 +252,7 @@ osf1_sys_ftruncate(struct lwp *l, const struct osf1_sys_ftruncate_args *uap, reg struct sys_ftruncate_args a; SCARG(&a, fd) = SCARG(uap, fd); - SCARG(&a, pad) = 0; + SCARG(&a, PAD) = 0; SCARG(&a, length) = SCARG(uap, length); return sys_ftruncate(l, &a, retval); @@ -264,7 +264,7 @@ osf1_sys_lseek(struct lwp *l, const struct osf1_sys_lseek_args *uap, register_t struct sys_lseek_args a; SCARG(&a, fd) = SCARG(uap, fd); - SCARG(&a, pad) = 0; + SCARG(&a, PAD) = 0; SCARG(&a, offset) = SCARG(uap, offset); SCARG(&a, whence) = SCARG(uap, whence); diff --git a/sys/compat/osf1/osf1_file.c b/sys/compat/osf1/osf1_file.c index 775eaba6fa61..0649dd154ab3 100644 --- a/sys/compat/osf1/osf1_file.c +++ b/sys/compat/osf1/osf1_file.c @@ -1,4 +1,4 @@ -/* $NetBSD: osf1_file.c,v 1.32 2009/01/13 11:35:24 rtr Exp $ */ +/* $NetBSD: osf1_file.c,v 1.33 2009/05/18 12:39:02 njoly Exp $ */ /* * Copyright (c) 1999 Christopher G. Demetriou. All rights reserved. @@ -58,7 +58,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: osf1_file.c,v 1.32 2009/01/13 11:35:24 rtr Exp $"); +__KERNEL_RCSID(0, "$NetBSD: osf1_file.c,v 1.33 2009/05/18 12:39:02 njoly Exp $"); #if defined(_KERNEL_OPT) #include "opt_syscall_debug.h" @@ -387,7 +387,7 @@ osf1_sys_truncate(struct lwp *l, const struct osf1_sys_truncate_args *uap, regis struct sys_truncate_args a; SCARG(&a, path) = SCARG(uap, path); - SCARG(&a, pad) = 0; + SCARG(&a, PAD) = 0; SCARG(&a, length) = SCARG(uap, length); return sys_truncate(l, &a, retval); diff --git a/sys/compat/osf1/osf1_mmap.c b/sys/compat/osf1/osf1_mmap.c index 64737881c8db..86e433a0346c 100644 --- a/sys/compat/osf1/osf1_mmap.c +++ b/sys/compat/osf1/osf1_mmap.c @@ -1,4 +1,4 @@ -/* $NetBSD: osf1_mmap.c,v 1.13 2007/12/20 23:03:03 dsl Exp $ */ +/* $NetBSD: osf1_mmap.c,v 1.14 2009/05/18 12:39:02 njoly Exp $ */ /* * Copyright (c) 1999 Christopher G. Demetriou. All rights reserved. @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: osf1_mmap.c,v 1.13 2007/12/20 23:03:03 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: osf1_mmap.c,v 1.14 2009/05/18 12:39:02 njoly Exp $"); #include #include @@ -117,7 +117,7 @@ osf1_sys_mmap(struct lwp *l, const struct osf1_sys_mmap_args *uap, register_t *r SCARG(&a, addr) = SCARG(uap, addr); SCARG(&a, len) = SCARG(uap, len); SCARG(&a, fd) = SCARG(uap, fd); - SCARG(&a, pad) = 0; + SCARG(&a, PAD) = 0; SCARG(&a, pos) = SCARG(uap, pos); /* translate prot */