summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-11-23 03:33:43 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-11-23 03:33:43 +0000
commitf29a33aee585119fc36d47055474d3a5b5ad1be7 (patch)
tree21a23bb2e50c64359f31cb04c562fd7a16c289c2 /sys/arch
parentdbd01d5c9c31f1aa997deab5b7d435c4ab233bd8 (diff)
add missing done: label so this actually compiles
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/alpha/alpha/disksubr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/disksubr.c b/sys/arch/alpha/alpha/disksubr.c
index d3aad8078e2..26e3c4439d5 100644
--- a/sys/arch/alpha/alpha/disksubr.c
+++ b/sys/arch/alpha/alpha/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.24 1998/11/21 20:43:42 deraadt Exp $ */
+/* $OpenBSD: disksubr.c,v 1.25 1998/11/23 03:33:42 millert Exp $ */
/* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */
/*
@@ -721,6 +721,7 @@ writedisklabel(dev, strat, lp, osdep)
(*strat)(bp);
error = biowait(bp);
+done:
bp->b_flags |= B_INVAL;
brelse(bp);
return (error);