Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mac68k/dev Mark a potentially unused variable



details:   https://anonhg.NetBSD.org/src/rev/363d9041659e
branches:  trunk
changeset: 790890:363d9041659e
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Oct 25 21:09:25 2013 +0000

description:
Mark a potentially unused variable

diffstat:

 sys/arch/mac68k/dev/akbd.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c0d8955c766c -r 363d9041659e sys/arch/mac68k/dev/akbd.c
--- a/sys/arch/mac68k/dev/akbd.c        Fri Oct 25 20:57:02 2013 +0000
+++ b/sys/arch/mac68k/dev/akbd.c        Fri Oct 25 21:09:25 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: akbd.c,v 1.23 2012/10/27 17:17:59 chs Exp $    */
+/*     $NetBSD: akbd.c,v 1.24 2013/10/25 21:09:25 martin Exp $ */
 
 /*
  * Copyright (C) 1998  Colin Wood
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: akbd.c,v 1.23 2012/10/27 17:17:59 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: akbd.c,v 1.24 2013/10/25 21:09:25 martin Exp $");
 
 #include "opt_adb.h"
 
@@ -132,7 +132,7 @@
        ADBSetInfoBlock adbinfo;
        struct akbd_softc *sc = device_private(self);
        struct adb_attach_args *aa_args = (struct adb_attach_args *)aux;
-       int error, kbd_done;
+       int error __unused, kbd_done;
        short cmd;
        u_char buffer[9];
 #if NWSKBD > 0



Home | Main Index | Thread Index | Old Index