Make these build again after buf.h/disksort changes.

This commit is contained in:
kleink 2000-01-31 19:04:52 +00:00
parent 547bd53f89
commit 09dd6fc81d
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rd.c,v 1.37 2000/01/21 23:29:03 thorpej Exp $ */
/* $NetBSD: rd.c,v 1.38 2000/01/31 19:04:52 kleink Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -758,7 +758,7 @@ rdfinish(rs, bp)
rs->sc_active = 0;
if (rs->sc_flags & RDF_WANTED) {
rs->sc_flags &= ~RDF_WANTED;
wakeup((caddr_t)dp);
wakeup((caddr_t)&rs->sc_tab);
}
return (NULL);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: sd.c,v 1.37 2000/01/21 23:29:04 thorpej Exp $ */
/* $NetBSD: sd.c,v 1.38 2000/01/31 19:04:53 kleink Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -871,7 +871,7 @@ sdfinish(sc, bp)
sc->sc_active = 0;
if (sc->sc_flags & SDF_WANTED) {
sc->sc_flags &= ~SDF_WANTED;
wakeup((caddr_t)dp);
wakeup((caddr_t)&sc->sc_tab);
}
}
}