Source-Changes-HG archive

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

[src/netbsd-2-0]: src/sys/dev/raidframe Pull up revision 1.7 (requested by os...



details:   https://anonhg.NetBSD.org/src/rev/a9cc842c05d2
branches:  netbsd-2-0
changeset: 561656:a9cc842c05d2
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Jun 28 08:33:24 2004 +0000

description:
Pull up revision 1.7 (requested by oster in ticket #563):
fix const'ificication, gcc-3.4 will notice it

diffstat:

 sys/dev/raidframe/raidframevar.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8c9aeca5bb29 -r a9cc842c05d2 sys/dev/raidframe/raidframevar.h
--- a/sys/dev/raidframe/raidframevar.h  Mon Jun 28 08:33:01 2004 +0000
+++ b/sys/dev/raidframe/raidframevar.h  Mon Jun 28 08:33:24 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: raidframevar.h,v 1.6 2004/01/04 06:37:16 oster Exp $ */
+/*     $NetBSD: raidframevar.h,v 1.6.2.1 2004/06/28 08:33:24 tron Exp $ */
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -569,7 +569,7 @@
 
        /* states to step through in an access. Must end with "LastState". The
         * default is DefaultStates in rf_layout.c */
-       RF_AccessState_t *states;
+       const RF_AccessState_t *states;
 
        RF_AccessStripeMapFlags_t flags;
 #endif                         /* !KERNEL */



Home | Main Index | Thread Index | Old Index