aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_rman.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-03-15 20:15:15 +0000
committerWarner Losh <imp@FreeBSD.org>2005-03-15 20:15:15 +0000
commita33ab774472fd10e7a066e618e86920e5bf9b85f (patch)
treef0c52245571b8ff378b93b1ab372a89daadb5c7b /sys/kern/subr_rman.c
parent45c26fa2b6f0f510e3b8424d379638aaf549bc63 (diff)
downloadsrc-a33ab774472fd10e7a066e618e86920e5bf9b85f.tar.gz
src-a33ab774472fd10e7a066e618e86920e5bf9b85f.zip
Fix a debugging printf. The order of start/end was inconsistant with
all the other start/end debugs, causing momentary confusion when the output was examined.
Notes
Notes: svn path=/head/; revision=143664
Diffstat (limited to 'sys/kern/subr_rman.c')
-rw-r--r--sys/kern/subr_rman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c
index 69ed02c482bc..aa1812ab25c0 100644
--- a/sys/kern/subr_rman.c
+++ b/sys/kern/subr_rman.c
@@ -247,7 +247,7 @@ rman_reserve_resource_bound(struct rman *rm, u_long start, u_long end,
if ((rend - rstart + 1) >= count) {
DPRINTF(("candidate region: [%#lx, %#lx], size %#lx\n",
- rend, rstart, (rend - rstart + 1)));
+ rstart, rend, (rend - rstart + 1)));
if ((s->r_end - s->r_start + 1) == count) {
DPRINTF(("candidate region is entire chunk\n"));
rv = s;