diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-28 00:57:57 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-28 00:57:57 +0000 |
| commit | 8aef171243894d9b06e5ac740bfa5e8686fc4c1a (patch) | |
| tree | f908d89518cbc0f801b11f1750100b49454326a1 /sys/miscfs/devfs | |
| parent | 7191deb01ed2d308d347683ba7c8e5ea66bab570 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs/devfs')
| -rw-r--r-- | sys/miscfs/devfs/devfs_vnops.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/miscfs/devfs/devfs_vnops.c b/sys/miscfs/devfs/devfs_vnops.c index ca25440e3461..6c9cfc0941c1 100644 --- a/sys/miscfs/devfs/devfs_vnops.c +++ b/sys/miscfs/devfs/devfs_vnops.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_vnops.c,v 1.67 1999/01/27 22:42:05 dillon Exp $ + * $Id: devfs_vnops.c,v 1.68 1999/01/27 23:49:45 dillon Exp $ */ @@ -1724,6 +1724,9 @@ devfs_strategy(struct vop_strategy_args *ap) case VBLK: (*dnp->by.Bdev.bdevsw->d_strategy)(bp); break; + default: + /* XXX set error code? */ + break; } return (0); } |
