diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2007-05-26 23:59:10 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2007-05-26 23:59:10 +0000 |
commit | c7f165fa6979d4f9d1b0a96b452c6adc13fdd887 (patch) | |
tree | 3d8d8b16a057bfb34fcad9043886f6bb4388b00c /sys/dev | |
parent | e4572d425f949f101e8fb3816883a0c8478d7723 (diff) |
better spacing
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/softraid.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index 1680b0d2992..a21f2737425 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.47 2007/05/26 23:07:28 tedu Exp $ */ +/* $OpenBSD: softraid.c,v 1.48 2007/05/26 23:59:09 marco Exp $ */ /* * Copyright (c) 2007 Marco Peereboom <marco@peereboom.us> * @@ -2134,8 +2134,9 @@ sr_boot_assembly(struct sr_softc *sc) bp->b_dev = devr = MAKEDISKDEV(majdev, dv->dv_unit, i); error = (*bdsw->d_open)(devr, FREAD, S_IFBLK, curproc); if (error) { - DNPRINTF(SR_D_META, "%s: sr_boot_assembly open " - "failed, partition %d\n", DEVNAME(sc), i); + DNPRINTF(SR_D_META, "%s: sr_boot_assembly " + "open failed, partition %d\n", + DEVNAME(sc), i); continue; } /* read metadat */ @@ -2169,9 +2170,11 @@ sr_boot_assembly(struct sr_softc *sc) } /* we are done, close device */ - error = (*bdsw->d_close)(devr, FREAD, S_IFBLK, curproc); + error = (*bdsw->d_close)(devr, FREAD, S_IFBLK, + curproc); if (error) { - DNPRINTF(SR_D_META, "%s: sr_boot_assembly close" "failed\n", DEVNAME(sc)); + DNPRINTF(SR_D_META, "%s: sr_boot_assembly " + "close failed\n", DEVNAME(sc)); continue; } } |