Source-Changes-HG archive

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

[src/pgoyette-compat]: src/sys/sys Use an array of alias names, rather than a...



details:   https://anonhg.NetBSD.org/src/rev/a872faa65d2a
branches:  pgoyette-compat
changeset: 321003:a872faa65d2a
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Mar 10 11:35:44 2018 +0000

description:
Use an array of alias names, rather than a comma-separated list.

diffstat:

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

diffs (18 lines):

diff -r 8c285a3c63fe -r a872faa65d2a sys/sys/module.h
--- a/sys/sys/module.h  Sat Mar 10 11:34:19 2018 +0000
+++ b/sys/sys/module.h  Sat Mar 10 11:35:44 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: module.h,v 1.41.14.1 2018/03/10 10:33:02 pgoyette Exp $        */
+/*     $NetBSD: module.h,v 1.41.14.2 2018/03/10 11:35:44 pgoyette Exp $        */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -79,7 +79,7 @@
        int             (*mi_modcmd)(modcmd_t, void *);
        const char      *mi_name;
        const char      *mi_required;
-       const char      *mi_aliases;
+       const char      *mi_alias[];
 } const modinfo_t;
 
 /* Per module information, maintained by kern_module.c */ 



Home | Main Index | Thread Index | Old Index