Remove bogus "return (0);" in rdmatch() that wiggled its way in uninvited.

This commit is contained in:
thorpej 1996-02-03 03:00:29 +00:00
parent d5b078f3e6
commit 996edfa606
1 changed files with 1 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rd.c,v 1.18 1996/01/10 20:54:29 thorpej Exp $ */ /* $NetBSD: rd.c,v 1.19 1996/02/03 03:00:29 thorpej Exp $ */
/* /*
* Copyright (c) 1988 University of Utah. * Copyright (c) 1988 University of Utah.
@ -253,8 +253,6 @@ rdmatch(hd)
rs->sc_dkdev.dk_name = rs->sc_xname; rs->sc_dkdev.dk_name = rs->sc_xname;
disk_attach(&rs->sc_dkdev); disk_attach(&rs->sc_dkdev);
return (0);
return (1); return (1);
} }