diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2006-02-14 03:29:31 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2006-02-14 03:29:31 +0000 |
commit | adff298cca804cd80aea2cf8a2094e5969013dd8 (patch) | |
tree | aa9fde9de28b7fd381dae5987071c6e5ca46ad06 | |
parent | 45a6144562a2d823f2469e0c76c44d2a3f9dc2c8 (diff) |
Notes
-rw-r--r-- | sys/kern/subr_disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_disk.c b/sys/kern/subr_disk.c index 224882276336a..44e4f566d8dc1 100644 --- a/sys/kern/subr_disk.c +++ b/sys/kern/subr_disk.c @@ -153,7 +153,7 @@ bioq_disksort(bioq, bp) /* * If the queue is empty then it's easy. */ - if ((bq = bioq_first(bioq)) == NULL) { + if (bioq_first(bioq) == NULL) { bioq_insert_tail(bioq, bp); return; } |