1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

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.
This commit is contained in:
Warner Losh 2005-03-15 20:15:15 +00:00
parent 45c26fa2b6
commit a33ab77447
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143664

View File

@ -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;