omap: fix format string warning %d for long
This commit is contained in:
parent
6d42467411
commit
807019d6eb
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ mmurelease(Proc* proc)
|
|||
for(page = proc->mmul2cache; page != nil; page = next){
|
||||
next = page->next;
|
||||
if(--page->ref)
|
||||
panic("mmurelease: page->ref %d", page->ref);
|
||||
panic("mmurelease: page->ref %ld", page->ref);
|
||||
pagechainhead(page);
|
||||
}
|
||||
if(proc->mmul2cache != nil)
|
||||
|
|
Loading…
Reference in a new issue