Module Name:    src
Committed By:   martin
Date:           Sat Oct 19 14:33:07 UTC 2013

Modified Files:
        src/sys/ddb: db_run.c

Log Message:
Mark a potentialy unused variable


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/ddb/db_run.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/ddb/db_run.c
diff -u src/sys/ddb/db_run.c:1.31 src/sys/ddb/db_run.c:1.32
--- src/sys/ddb/db_run.c:1.31	Sun Sep 23 23:55:55 2007
+++ src/sys/ddb/db_run.c	Sat Oct 19 14:33:07 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: db_run.c,v 1.31 2007/09/23 23:55:55 martin Exp $	*/
+/*	$NetBSD: db_run.c,v 1.32 2013/10/19 14:33:07 martin Exp $	*/
 
 /*
  * Mach Operating System
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_run.c,v 1.31 2007/09/23 23:55:55 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_run.c,v 1.32 2013/10/19 14:33:07 martin Exp $");
 
 #include "opt_ddb.h"
 
@@ -197,7 +197,7 @@ db_restart_at_pc(db_regs_t *regs, bool w
 	if ((db_run_mode == STEP_COUNT) ||
 	    (db_run_mode == STEP_RETURN) ||
 	    (db_run_mode == STEP_CALLT)) {
-		db_expr_t		ins;
+		db_expr_t		ins __unused;
 
 		/*
 		 * We are about to execute this instruction,

Reply via email to