Module Name:    src
Committed By:   christos
Date:           Mon Nov  4 19:57:29 UTC 2013

Modified Files:
        src/sys/arch/alpha/include: pmap.h

Log Message:
convert to flex array


To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/alpha/include/pmap.h

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/alpha/include/pmap.h
diff -u src/sys/arch/alpha/include/pmap.h:1.77 src/sys/arch/alpha/include/pmap.h:1.78
--- src/sys/arch/alpha/include/pmap.h:1.77	Sun Feb  5 21:14:13 2012
+++ src/sys/arch/alpha/include/pmap.h	Mon Nov  4 14:57:29 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.77 2012/02/06 02:14:13 matt Exp $ */
+/* $NetBSD: pmap.h,v 1.78 2013/11/04 19:57:29 christos Exp $ */
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001, 2007 The NetBSD Foundation, Inc.
@@ -141,7 +141,7 @@ struct pmap {
 	struct pmap_statistics	pm_stats;	/* pmap statistics */
 	unsigned long		pm_cpus;	/* mask of CPUs using pmap */
 	unsigned long		pm_needisync;	/* mask of CPUs needing isync */
-	struct pmap_asn_info	pm_asni[1];	/* ASN information */
+	struct pmap_asn_info	pm_asni[];	/* ASN information */
 			/*	variable length		*/
 };
 

Reply via email to