From b3f09ae457bfb7600e2157893c2b4a1bc42cb37b Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Sun, 21 Oct 2007 19:38:21 +0000 Subject: [PATCH] Fix a last-minute, but more importantly, an untested change that made the previous commit non-functional: the usage string was put in the wrong field... --- sbin/geom/class/part/geom_part.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/geom/class/part/geom_part.c b/sbin/geom/class/part/geom_part.c index 30db6c00d07d..f70b4879260d 100644 --- a/sbin/geom/class/part/geom_part.c +++ b/sbin/geom/class/part/geom_part.c @@ -88,7 +88,7 @@ struct g_command class_commands[] = { G_OPT_SENTINEL }, "geom", NULL }, - { "show", 0, gpart_show, G_NULL_OPTS, "[geom ...]", NULL }, + { "show", 0, gpart_show, G_NULL_OPTS, NULL, "[geom ...]" }, { "undo", 0, NULL, G_NULL_OPTS, "geom", NULL }, G_CMD_SENTINEL };