diff options
author | pjd <pjd@FreeBSD.org> | 2006-11-01 22:28:11 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2006-11-01 22:28:11 +0000 |
commit | 3d8e2e0a6f357ed1a3f49941041c5850215bb15d (patch) | |
tree | 8a5afbd8f2f56faeb1a937928fcaa4f8603609e5 /sbin/geom | |
parent | cf33008f77f45f702d505c68cd3bc82012fd47e7 (diff) | |
download | FreeBSD-src-3d8e2e0a6f357ed1a3f49941041c5850215bb15d.zip FreeBSD-src-3d8e2e0a6f357ed1a3f49941041c5850215bb15d.tar.gz |
G_TYPE_NONE was replaced with G_TYPE_BOOL.
Diffstat (limited to 'sbin/geom')
-rw-r--r-- | sbin/geom/class/cache/geom_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/geom/class/cache/geom_cache.c b/sbin/geom/class/cache/geom_cache.c index 19a0bf5..5ca829c 100644 --- a/sbin/geom/class/cache/geom_cache.c +++ b/sbin/geom/class/cache/geom_cache.c @@ -74,7 +74,7 @@ struct g_command class_commands[] = { }, { "destroy", G_FLAG_VERBOSE, NULL, { - { 'f', "force", NULL, G_TYPE_NONE }, + { 'f', "force", NULL, G_TYPE_BOOL }, G_OPT_SENTINEL }, "[-fv] name ..." @@ -95,7 +95,7 @@ struct g_command class_commands[] = { }, { "stop", G_FLAG_VERBOSE, NULL, { - { 'f', "force", NULL, G_TYPE_NONE }, + { 'f', "force", NULL, G_TYPE_BOOL }, G_OPT_SENTINEL }, "[-fv] name ..." |