diff options
Diffstat (limited to 'sys/geom/geom_vol_ffs.c')
-rw-r--r-- | sys/geom/geom_vol_ffs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/geom/geom_vol_ffs.c b/sys/geom/geom_vol_ffs.c index 380656cabf97..9b320fb13f78 100644 --- a/sys/geom/geom_vol_ffs.c +++ b/sys/geom/geom_vol_ffs.c @@ -144,9 +144,8 @@ g_vol_ffs_taste(struct g_class *mp, struct g_provider *pp, int flags) } static struct g_class g_vol_ffs_class = { - VOL_FFS_CLASS_NAME, - g_vol_ffs_taste, - NULL, + .name = VOL_FFS_CLASS_NAME, + .taste = g_vol_ffs_taste, G_CLASS_INITIALIZER }; |