From a33ab774472fd10e7a066e618e86920e5bf9b85f Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 15 Mar 2005 20:15:15 +0000 Subject: [PATCH] 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. --- sys/kern/subr_rman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;