Remove extra semicolon.

This commit is contained in:
mbalmer 2010-01-05 13:22:40 +00:00
parent 2603a89351
commit 93f06d875c
3 changed files with 10 additions and 10 deletions

View File

@ -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 <sys/cdefs.h>
__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);

View File

@ -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 <sys/cdefs.h>
__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",

View File

@ -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 <sys/cdefs.h>
__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: