Module Name:    src
Committed By:   martin
Date:           Sat Apr  2 10:21:58 UTC 2011

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

Log Message:
Do not increment a bool var - from Henning Petersen, PR port-vax/44816.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/vax/vax/sbi.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/sbi.c
diff -u src/sys/arch/vax/vax/sbi.c:1.36 src/sys/arch/vax/vax/sbi.c:1.37
--- src/sys/arch/vax/vax/sbi.c:1.36	Tue Dec 14 23:44:49 2010
+++ src/sys/arch/vax/vax/sbi.c	Sat Apr  2 10:21:58 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: sbi.c,v 1.36 2010/12/14 23:44:49 matt Exp $ */
+/*	$NetBSD: sbi.c,v 1.37 2011/04/02 10:21:58 martin Exp $ */
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sbi.c,v 1.36 2010/12/14 23:44:49 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sbi.c,v 1.37 2011/04/02 10:21:58 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -76,7 +76,7 @@
 		case NEX_CI:
 			aprint_naive("ci at %s", name);
 			aprint_normal("ci at %s", name);
-			unsupp++;
+			unsupp = true;
 			break;
 		default:
 			aprint_naive("unknown device 0x%x at %s",

Reply via email to