1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-27 16:39:08 +00:00

Hmm, diff/patch still doesn't like me.

Missed one s/biowait/bufwait/g
This commit is contained in:
Poul-Henning Kamp 2000-04-30 06:16:03 +00:00
parent a3b693c9d7
commit 95bdaa0ee8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59773

View File

@ -2573,14 +2573,14 @@ allocbuf(struct buf *bp, int size)
}
/*
* biowait:
* bufwait:
*
* Wait for buffer I/O completion, returning error status. The buffer
* is left locked and B_DONE on return. B_EINTR is converted into a EINTR
* error and cleared.
*/
int
biowait(register struct buf * bp)
bufwait(register struct buf * bp)
{
int s;