Make bioq_disksort have a ANSI-C definition rather than a K&R definition.

This commit is contained in:
Warner Losh 2009-02-03 07:53:51 +00:00
parent 8ed4d9c970
commit 13b4c4c3a3

View File

@ -144,9 +144,7 @@ bioq_takefirst(struct bio_queue_head *head)
* This implements the one-way scan which optimizes disk seek times.
*/
void
bioq_disksort(bioq, bp)
struct bio_queue_head *bioq;
struct bio *bp;
bioq_disksort(struct bio_queue_head *bioq, struct bio *bp)
{
struct bio *bq;
struct bio *bn;