diff --git a/sys/compat/darwin/darwin_exec.c b/sys/compat/darwin/darwin_exec.c index b51f6c50dc02..cb5df9a173e5 100644 --- a/sys/compat/darwin/darwin_exec.c +++ b/sys/compat/darwin/darwin_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: darwin_exec.c,v 1.59 2009/08/16 15:35:52 manu Exp $ */ +/* $NetBSD: darwin_exec.c,v 1.60 2010/01/05 13:22:40 mbalmer Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include "opt_compat_darwin.h" /* For COMPAT_DARWIN in mach_port.h */ #include -__KERNEL_RCSID(0, "$NetBSD: darwin_exec.c,v 1.59 2009/08/16 15:35:52 manu Exp $"); +__KERNEL_RCSID(0, "$NetBSD: darwin_exec.c,v 1.60 2010/01/05 13:22:40 mbalmer Exp $"); #include "opt_syscall_debug.h" #include "wsdisplay.h" @@ -267,8 +267,8 @@ darwin_e_proc_fork(struct proc *p, struct proc *parent, int forkflags) ded1 = p->p_emuldata; ded2 = parent->p_emuldata; - ed1 = (char *)ded1 + sizeof(struct mach_emuldata);; - ed2 = (char *)ded2 + sizeof(struct mach_emuldata);; + ed1 = (char *)ded1 + sizeof(struct mach_emuldata); + ed2 = (char *)ded2 + sizeof(struct mach_emuldata); len = sizeof(struct darwin_emuldata) - sizeof(struct mach_emuldata); (void)memcpy(ed1, ed2, len); diff --git a/sys/compat/linux/arch/i386/linux_machdep.c b/sys/compat/linux/arch/i386/linux_machdep.c index a261ac8be409..e425d5121f8b 100644 --- a/sys/compat/linux/arch/i386/linux_machdep.c +++ b/sys/compat/linux/arch/i386/linux_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_machdep.c,v 1.146 2009/11/23 00:46:06 rmind Exp $ */ +/* $NetBSD: linux_machdep.c,v 1.147 2010/01/05 13:22:41 mbalmer Exp $ */ /*- * Copyright (c) 1995, 2000, 2008, 2009 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.146 2009/11/23 00:46:06 rmind Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.147 2010/01/05 13:22:41 mbalmer Exp $"); #if defined(_KERNEL_OPT) #include "opt_vm86.h" @@ -645,7 +645,7 @@ linux_write_ldt(struct lwp *l, const struct linux_sys_modify_ldt_args *uap, d.sd.sd_xx = 0; } sl.start = ldt_info.entry_number; - sl.desc = NULL;; + sl.desc = NULL; sl.num = 1; DPRINTF(("linux_write_ldt: idx=%d, base=0x%lx, limit=0x%x\n", diff --git a/sys/compat/linux32/common/linux32_ipccall.c b/sys/compat/linux32/common/linux32_ipccall.c index ff5fac9f6d4d..797741807248 100644 --- a/sys/compat/linux32/common/linux32_ipccall.c +++ b/sys/compat/linux32/common/linux32_ipccall.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux32_ipccall.c,v 1.9 2009/11/18 15:19:24 njoly Exp $ */ +/* $NetBSD: linux32_ipccall.c,v 1.10 2010/01/05 13:22:41 mbalmer Exp $ */ /* * Copyright (c) 2008 Nicolas Joly @@ -27,7 +27,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: linux32_ipccall.c,v 1.9 2009/11/18 15:19:24 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux32_ipccall.c,v 1.10 2010/01/05 13:22:41 mbalmer Exp $"); #if defined(_KERNEL_OPT) #include "opt_sysv.h" @@ -128,7 +128,7 @@ linux32_sys_ipc(struct lwp *l, const struct linux32_sys_ipc_args *uap, switch (SCARG(uap, what)) { #ifdef SYSVSEM case LINUX32_IPC_semop: - return linux32_semop(l, uap, retval);; + return linux32_semop(l, uap, retval); case LINUX32_IPC_semget: return linux32_semget(l, uap, retval); case LINUX32_IPC_semctl: