diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-02-25 19:11:11 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-02-25 19:11:11 +0000 |
commit | 686c46d225921363fb8749fd74457ecbf8a9e987 (patch) | |
tree | 63b8f8d1cb1e89a41aeb9aa556cb2c5bc230d9c3 /sys | |
parent | 6e65a78aee78f663139c6d10f21d18d7416617a8 (diff) | |
download | src-686c46d225921363fb8749fd74457ecbf8a9e987.tar.gz src-686c46d225921363fb8749fd74457ecbf8a9e987.zip |
iodone->biodone; get rid of older call syntax.
Notes
Notes:
svn path=/head/; revision=6711
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/st.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c index 415c2e96694c..cf4f80f90840 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: st.c,v 1.25 1995/01/24 12:04:56 dufault Exp $ + * $Id: st.c,v 1.26 1995/01/31 11:41:47 dufault Exp $ */ /* @@ -1040,7 +1040,7 @@ done: /* * Correctly set the buf to indicate a completed xfer */ - iodone(bp); + biodone(bp); return; } |