xen: correct print format for long
This commit is contained in:
parent
46cc1c444b
commit
3f230d717d
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ mmurelease(Proc* proc)
|
|||
for(page = proc->mmufree; page; page = next){
|
||||
next = page->next;
|
||||
if(--page->ref)
|
||||
panic("mmurelease: page->ref %d\n", page->ref);
|
||||
panic("mmurelease: page->ref %ld\n", page->ref);
|
||||
pagechainhead(page);
|
||||
}
|
||||
if(proc->mmufree && palloc.r.p)
|
||||
|
|
Loading…
Reference in a new issue