diff options
author | jkh <jkh@FreeBSD.org> | 1995-02-25 19:11:11 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-02-25 19:11:11 +0000 |
commit | 04958419e842202587df95082c8717fe0b164213 (patch) | |
tree | 63b8f8d1cb1e89a41aeb9aa556cb2c5bc230d9c3 /sys/scsi | |
parent | ec7157ee5fd042bf388aec215e4157e24beca6a4 (diff) | |
download | FreeBSD-src-04958419e842202587df95082c8717fe0b164213.zip FreeBSD-src-04958419e842202587df95082c8717fe0b164213.tar.gz |
iodone->biodone; get rid of older call syntax.
Diffstat (limited to 'sys/scsi')
-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 415c2e9..cf4f80f 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; } |