diff options
author | peter <peter@FreeBSD.org> | 2001-03-13 05:55:43 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-03-13 05:55:43 +0000 |
commit | 7223692dd3fa691597893c7dec4bfceb0f174ec3 (patch) | |
tree | 6ec9a6fcb21c33c0b2bb4036180cba173a92f8ee /sys | |
parent | 3973aeb5ebaa6d704ef80ff1f91e85eb9d36b6c5 (diff) | |
download | FreeBSD-src-7223692dd3fa691597893c7dec4bfceb0f174ec3.zip FreeBSD-src-7223692dd3fa691597893c7dec4bfceb0f174ec3.tar.gz |
By convention, the moduledata is static unless there is a reason for it
to not be.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/vinum/vinum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vinum/vinum.c b/sys/dev/vinum/vinum.c index 1c639f6..4b7089c 100644 --- a/sys/dev/vinum/vinum.c +++ b/sys/dev/vinum/vinum.c @@ -273,7 +273,7 @@ vinum_modevent(module_t mod, modeventtype_t type, void *unused) return 0; } -moduledata_t vinum_mod = +static moduledata_t vinum_mod = { "vinum", (modeventhand_t) vinum_modevent, |