Module Name:    src
Committed By:   reinoud
Date:           Thu Jan  5 17:26:57 UTC 2012

Modified Files:
        src/sys/arch/x86/x86: syscall.c

Log Message:
Remove unused variable i accidently left standing


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/x86/x86/syscall.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/x86/syscall.c
diff -u src/sys/arch/x86/x86/syscall.c:1.7 src/sys/arch/x86/x86/syscall.c:1.8
--- src/sys/arch/x86/x86/syscall.c:1.7	Thu Jan  5 17:18:02 2012
+++ src/sys/arch/x86/x86/syscall.c	Thu Jan  5 17:26:57 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: syscall.c,v 1.7 2012/01/05 17:18:02 reinoud Exp $	*/
+/*	$NetBSD: syscall.c,v 1.8 2012/01/05 17:26:57 reinoud Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2000, 2009 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.7 2012/01/05 17:18:02 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.8 2012/01/05 17:26:57 reinoud Exp $");
 
 #include "opt_sa.h"
 
@@ -106,7 +106,6 @@ syscall(struct trapframe *frame)
 	const struct sysent *callp;
 	struct proc *p;
 	struct lwp *l;
-	struct vm_map *map;
 	int error;
 	register_t code, rval[2], rip_call;
 #ifdef __x86_64__

Reply via email to