Module Name:    src
Committed By:   martin
Date:           Fri May 23 19:05:35 UTC 2014

Modified Files:
        src/sys/arch/vax/vax: locore.c

Log Message:
#ifdef a variable like its only use


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/arch/vax/vax/locore.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/vax/vax/locore.c
diff -u src/sys/arch/vax/vax/locore.c:1.81 src/sys/arch/vax/vax/locore.c:1.82
--- src/sys/arch/vax/vax/locore.c:1.81	Mon Mar 24 20:06:33 2014
+++ src/sys/arch/vax/vax/locore.c	Fri May 23 19:05:35 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: locore.c,v 1.81 2014/03/24 20:06:33 christos Exp $	*/
+/*	$NetBSD: locore.c,v 1.82 2014/05/23 19:05:35 martin Exp $	*/
 /*
  * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -32,7 +32,7 @@
  /* All bugs are subject to removal without further notice */
 		
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: locore.c,v 1.81 2014/03/24 20:06:33 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locore.c,v 1.82 2014/05/23 19:05:35 martin Exp $");
 
 #include "opt_compat_netbsd.h"
 
@@ -94,7 +94,10 @@ _start(struct rpb *prpb)
 	extern uintptr_t scratch;
 	struct pte *pt;
 	vaddr_t uv;
-	const char *mv, *md;
+	const char *mv;
+#if VAX410 || VAXANY
+	const char *md;
+#endif
 
 	mtpr(AST_NO, PR_ASTLVL); /* Turn off ASTs */
 

Reply via email to