Author: rnoland Date: Sun Dec 21 16:56:13 2008 New Revision: 186374 URL: http://svn.freebsd.org/changeset/base/186374
Log: Fix printing of KASSERT message missed in r163604. Approved by: kib Modified: head/sys/vm/vm_object.c Modified: head/sys/vm/vm_object.c ============================================================================== --- head/sys/vm/vm_object.c Sun Dec 21 14:04:10 2008 (r186373) +++ head/sys/vm/vm_object.c Sun Dec 21 16:56:13 2008 (r186374) @@ -672,7 +672,7 @@ vm_object_terminate(vm_object_t object) while ((p = TAILQ_FIRST(&object->memq)) != NULL) { KASSERT(!p->busy && (p->oflags & VPO_BUSY) == 0, ("vm_object_terminate: freeing busy page %p " - "p->busy = %d, p->flags %x\n", p, p->busy, p->flags)); + "p->busy = %d, p->oflags %x\n", p, p->busy, p->oflags)); if (p->wire_count == 0) { vm_page_free(p); cnt.v_pfree++; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"