From 01ab535e8db6e6249f32a4d324a3d58ba637c564 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Tue, 6 Jul 2004 17:06:54 +0000 Subject: [PATCH] Add missing argument. --- sys/geom/label/g_label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/label/g_label.c b/sys/geom/label/g_label.c index 095e5cd079d7..b8ce0ccdbe1c 100644 --- a/sys/geom/label/g_label.c +++ b/sys/geom/label/g_label.c @@ -211,7 +211,7 @@ g_label_taste(struct g_class *mp, struct g_provider *pp, int flags __unused) g_attach(cp, pp); error = g_access(cp, 1, 0, 0); if (error != 0) { - g_wither_geom(gp); + g_wither_geom(gp, ENXIO); return (NULL); }